To display on console.
int printf(const char *format, ...)
/* printf example */ #include int main() { printf ("Characters: %c %c",'a',65); printf ("Decimals: %d %ld",1977,650000L); printf ("Preceding with blanks: %10d ",1977); printf ("Preceding with zeros: %010d ",1977); printf ("Some different radices: %d %x %o %#x %#o ", 100, 100, 100, 100, 100); printf ("floats: %4.2f %+.0e %E ", 3.1416, 3.1416, 3.1416); printf ("Width trick: %*d ", 5, 10); printf ("%s ", "A string"); return 0; }
Something will be printed on screen.
Nothing As of Now
puts() - For Strings
tutorialspoint.com