Home | Computer Science
PROGRAM
Defination
All programs of C language are converted into C++.
For eg
#include <iostream>
#include<conio.h>
main() {
cout << "Hello World!";
getch();
}
EXTRA IMFORMATION
- In First Line,The header file is used "iostream"
- FUll form of it is Input Output Stream
- In Second Line,The header file is used "conio.h"
- It is important to used
- As it helps to run file if we will not use it it will show file is not saved
- In Third Line, main is used
- In Fourth Line, Cout is used