headders

  1. MetalheadGautham

    C & C++ getch() and clrscr() functions in Linux

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