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
  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