fork download
  1. #include <stdio.h>
  2. int main(){
  3. int a = 4 ;
  4. float b = 1.4 ;
  5. char c = 'p';
  6. printf("hi my name \n is %d" , a ) ;
  7. printf(" Lucky nice \t to meet %f" , b ) ;
  8. printf(" You what your \, name %c" , c ) ;
  9. return 0 ;
  10. }
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
hi my name 
 is 4 Lucky nice 	 to meet 1.400000 You what your , name p