fork download
  1. #include<stdio.h>
  2. int main(){
  3. int a = 1 ;
  4. float b = 2.0 ;
  5.  
  6. char c = 'd';
  7. printf("the value of a is %d " , a );
  8. printf("the value of a is %f", c );
  9. printf("the value of a is %c" , c);
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
the value of a is 1  the value of a is 0.000000the value of a is d