fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // The sum of three values
  5. int answer, result;
  6.  
  7. answer = 100;
  8. result = answer - 10;
  9. printf ("The result is %i\n", result + 5);
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
The result is 95