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