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.
/* 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 }