Home | Computer Science
C++
Defination
C++ is used to create computer programs, and is one of the most used language in game development.
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