Hello World The First Program
Program
File: - Helloworld.c
#include <stdio.h> // header file
#include <conio.h> // header file
void main() { // main function with return type
printf("Hello, World!"); // for display the your stetmant
getch (); // return type
}
Output: -
Hello, World!
Practices Question: -
1. Print your name using printf statement?
2. Print your think, About India using a simple printf statement?
Comments
Post a Comment