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