fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x;
  5. printf("enter x value::\n");
  6. scanf("%d\n",&x);
  7. printf("%d\n",x);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 4320KB
stdin
10
stdout
enter x value::
10