Program 2 #P02 - C Program to Print an Integer Learning C Programming || For Beginners || #C105
In this video we will learn how to make our first C program to print a hello world message on screen. It is very basic program and I have tried my best to explain everything. If you are facing any difficulty then feel free to ask in comment section.
Download Software Dev-C++ :
https://sourceforge.net/projects/orwe...
In this program, integer entered by the user is stored in a variable. Then, that variable is displayed on the screen using printf() function.
In this program, an integer variable number is declared.
The printf() function displays Enter an integer: on the screen. Then, the scanf() function reads an integer data from the user and stores in variable number.
Finally, the value stored in the variable number is displayed on the screen using printf() function.