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=2.5;
  9. char c;
  10. c=c;
  11. printf("a=%d\n",a);
  12. printf("b=%f\n",b);
  13. printf("c=%c\n",c);
  14. printf("End of program\n");
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
a=1
b=2.500000
c=
End of program