fork download
  1.  
  2. #include<stdio.h>
  3.  
  4. int main() {
  5. int x=10;
  6. int y=26;
  7. int z=x+y;
  8. printf("Sum of x+y = %i", z);
  9. }
  10.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
Sum of x+y = 36