 |
printf - C++ Reference - cplusplus.com - The C++ Resources Network
Print formatted data to stdout Writes the C string pointed by format to the standard output (stdout). If format includes format specifiers ... /* printf example */ #include int main() { printf ("Characters: %c %c \n", 'a', 65); printf ("Decimals: %d
www.cplusplus.com |
 |