fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a = 1;
  6. float b = 2.5;
  7. char c = 'A';
  8. printf("a = %d",a);
  9. printf("b = %f",b);
  10. printf("c = %c",c);
  11. printf("End of program");
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
a = 1b = 2.500000c = AEnd of program