Hello Friends,
Today i am sharing the structure of program with all of you.
/*This Program prints Hello World on screen*/
#include<iostream>
int main (){
cout<<"Hello World";
return 0;
}
This Comments are ignored by compiler and are used to provide useful information about
program to humans who use it.
I hope you like it .
Thank You
Today i am sharing the structure of program with all of you.
/*This Program prints Hello World on screen*/
#include<iostream>
int main (){
cout<<"Hello World";
return 0;
}
- 1. /* This Program....*/
This Comments are ignored by compiler and are used to provide useful information about
program to humans who use it.
- 2. #include <iostream.h>
- 3. using namepace std;
- 4. main ()
- 5. {}
- 6. Cout<<
- 7. "Hello World" is a string that will be displayed on user screen.
- 8.return 0; return the value zero to the operating system.
I hope you like it .
Thank You
