What is the use of printf() and scanf() functions?
printf(): The printf() function is used to print the integer, character, float and string values on to the screen. Following are the format specifier: %d: It is a format specifier used to print an integer value. %s: It is a format specifier used to print a string. %c: It is a format specifier used to … Read more