C-Print() Function

printf() function

The printf() function is used for output. 

It prints the given statement to the console.

The syntax of printf() function is given below.


printf("format string",argument_list);  


For Example as Source code :

#include<stdio.h>

int main()

{
    printf("hello ClassZones!");
}



output:

hello ClassZones!