MetalheadGautham
AFK
Hope this helps newbies.
clrscr()
getch()
And yeah, always use
after including headders. Need that because actual usage of cout otherwise is std::cout and not cout, and so on.
clrscr()
Code:
system("clear"); //Needs cstdlib headder file so do #include<cstdlib>
Code:
getchar(); // Needs stdio.h so do #include<stdio.h>
Code:
using namespace std;