There are no reviews yet. Be the first to send feedback to the community and the maintainers!
Repository Details
In C programming language, printf() function is used to print the “character, string, float, integer, octal and hexadecimal values” onto the output screen. I use printf() function with %d format specifier to display the value of an integer variable. Similarly %c is used to display character, %f for float variable, %s for a string variable, %lffor double, and %x for a hexadecimal variable. To generate a newline,i use “\n” in C printf() statement