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