fork download
  1. #include<stdio.h>
  2. int main(){
  3. int a= 4;
  4. float b = 1.2 ;
  5. char c = 's';
  6. printf("the program output is %d", a);
  7. printf("the program output is %f", b);
  8. printf("the program output is %c", c);
  9. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
the program output is 4the program output is 1.200000the program output is s