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