fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a;
  6. a=1;
  7. int b;
  8. b=100;
  9. int c;
  10. c=1000;
  11. printf("a=%d\n",a);
  12. printf("b=%d\n",b);
  13. printf("c=%d\n",c);
  14. printf("End of program\n");
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
a=1
b=100
c=1000
End of program