In this Hindi tutorial, you will learn about the printf() function in C programming. The printf() function is used to print formatted data to the console. You will learn how to use the printf() function to print different types of data, including integers, floats, strings, and characters.

C programming is a general-purpose computer programming language developed in 1972 by Dennis M. Ritchie at the Bell Telephone Laboratories to develop the UNIX operating system. C is the most widely used computer language. C Programming  also considered to be the mother of all programming languages.

C programming language is a MUST for students to become a great Software Engineer.

C programming is the best way to learn to code and become a programmer. This course will teach you C language from the basics and it is beginner friendly .

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

In C programming language, printf() function is used to print the (“character, string, float, integer, octal and hexadecimal values”) onto the output screen.
   
We 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 string variable, %lf for double and %x for hexadecimal variable.
   
To generate a newline,we use “\n” in C printf() statement.

#c #programming 

C Programming in Hindi | Learn printf() function in C
1.05 GEEK