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