TC Introduction To Programming
TC Introduction To Programming
TURBO C
printf a function used to display the argument list printf (“control string codes”,
on the monitor. it sometimes needs the argument list);
control string codes to help display the
remaining argument on the screen printf(“hello, %s, you are %d
years old”, name, age);
putchar a function used to display the argument list putchar();
or string on the monitor. it is like
overwriting a character putchar(tolower (ch));