fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x;
  5. printf("Enter x value::/n");
  6. scanf("%d",&x);
  7. printf("%d/n",x);
  8.  
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4364KB
stdin
Standard input is empty
stdout
Enter x value::/n32764/n