Mega Code Archive

 
Categories / C / Console
 

Printf

#include <stdio.h> int main(void) {   char ch;   float f;   double d;   ch = 'X';   f = 10.23;   d = 13.09;      printf("ch = %c, ", ch);   printf("f = %f, ", f);   printf("d = %f", d);   return 0; }