Here we will write a C programs to display Hello World on the screen. In this program we are displays the Hello World message on the screen. it is a basic program and most simplest program in C programming
#include –it is a header file. This statement tells compiler to include this stdio.h header file in the program. This file is a standard input output file that contains the definitions of input output functions such as scanf() and printf(). In the above program we are using printf() function, so we are required this header file.
0 Comments