Programming_IT
552 subscribers
27 photos
2 videos
3 files
77 links
Behind every mouse click and touch-screen tap, there is a computer program that makes things happen. Follow and like my page if you are tech addict. I am here to teach you all kind of latest technologies and programming languages.
Download Telegram
/* C++ Programming Examples */
#include<iostream.h> #include<conio.h>
void main()
{
clrscr(); // clear the screen cout<<"Hello Compiler, I am C++";
getch(); // holds output screen until user press a key
}