Basic C Language Hello World Program
The most basic program for C language. Thats what this is. This is a simple C language “Hello World” program. The Program:
|
1 2 3 4 5 6 7 8 |
#include<stdio.h>//Header files #include<conio.h> void main() //Our main function { printf("Hello"); //Our print statement getch(); //Means get character } |
getch(): getch() stands for ‘get charater’. It tells the compiler to wait for the user to press …