fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int x,y,z;
  5. z=x+y;
  6. x=23;
  7. y=45;
  8. printf("the sum is:%d",z);
  9. return 0;
  10. }
Success #stdin #stdout 0s 10304KB
stdin
23 45
stdout
the sum is:0