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