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