Computer Science, asked by ohktpoh, 8 months ago

The ___________________ function is used to display the output of any command on the screen .

Answers

Answered by shuklaamarujala
38

Explanation:

printf() and scanf() , which are used to display output on screen and to take input from user respectively.

Answered by anjaliom1122
1

Answer:

The printf() function is used to display the output of any command on the screen.

Explanation:

A library function called printf() is used to display formatted output on screens. The string is printed within quotation marks by the function. We must include stdio in order to use printf() in our programme. The print() function outputs the message to the standard output device, such as the screen. The message can be a string or any other object, and before it is displayed on the screen, the object will be changed into a string. The output on the screen is printed using the printf() command. ​A message can be output to the screen or another standard output device using the print() function in programming languages. To display output on the console, use the function that is defined in the stdio.h header file.

Similar questions