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