fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include<stdio.h>
  9. int main(){
  10. int a;
  11. printf("Enter a number");
  12. scanf("%d",&a);
  13. printf("you have entered %d",&a);
  14. return 0;
  15. }
  16.  
  17.  
  18.  
  19.  
Success #stdin #stdout 0.01s 5292KB
stdin
45
stdout
Enter a numberyou have entered -1597257836