fork download
  1. #include <stdio.h>
  2.  
  3. main( )
  4. {
  5. float a=15.5;
  6. char ch='C';
  7. printit ( a, ch ) ;
  8. }
  9. printit ( a, ch )
  10. {
  11. printf ( "\n%f%c",a,ch ) ;
  12. }
  13.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
15.5000005