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
  1. In First Line,The header file is used "iostream"
  2. In Second Line,The header file is used "conio.h"
  3. In Third Line, main is used
  4. In Fourth Line, Cout is used