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.  
  10. int main()
  11. { int x , y , z;
  12.  
  13. printf("enter x value =");
  14. scanf("%d" , &x );
  15.  
  16. printf("enter y value =");
  17. scanf("%d" , &y );
  18. z = x + y;
  19.  
  20. printf("sum = %d\n", z );
  21.  
  22. return 0;
  23. }
  24.  
  25.  
Success #stdin #stdout 0s 5304KB
stdin
45
stdout
enter x value =enter y value =sum = 32812