Is there a clear screen function similar to that of CLS in Qbasic?
This is a discussion on Clear Screen Function? within the C Programming forums, part of the General Programming Boards category; Is there a clear screen function similar to that of CLS in Qbasic?...
Is there a clear screen function similar to that of CLS in Qbasic?
Check out the FAQ
MagosX.com
Give a man a fish and you feed him for a day.
Teach a man to fish and you feed him for a lifetime.
just use clrscr();
Like so:
----------------------------------------------------------------------------------
#include<stdio.h>
main()
{
clrscr();
printf("Hello World!");
}
You can teach a man to... Aw $$$$ it. It's just not worth the time any more.Originally posted by jazy921
just use clrscr();
Like so:
Quzah.
Hope is the first step on the road to disappointment.