What is printf in c programming ?

 

Answer: 

In C programming, printf() is one of the main output function. The function sends formatted output to the screen. For example,

 Example : 

 #include <stdio.h>    

int main()

{

   printf("Hello World");

    return 0;

}

Output : Hello World

Comments

Popular Posts

Give Your Feedback

Name

Email *

Message *