fork download
  1. #include<stdio.h>
  2. int main(){
  3. int a = 2 ;
  4. float b = 3 ;
  5. char c = 's' ;
  6. printf("The progarm out put is %d \n" , a);
  7. printf(" The program out put is %f \n" , b);
  8. printf(" The program out put is %C \n" , c);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
The progarm out put is 2 
 The program out put is 3.000000 
 The program out put is s