fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int a = 5;
  6. int b = 10;
  7. int c = a + b;
  8.  
  9. printf("Result = %d", c);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Result = 15