Thread
:
Help stupid problem with clrscr
View Single Post
Oct 27th, 2005, 5:09 PM
#
3
tempest
Programming Guru
Join Date: Oct 2004
Posts: 1,041
Rep Power:
6
Next time try pasting code you've written with the [Enter] key...
All that's saying is that clrscr() is not defined. Add this under your includes...
(
Toggle Plain Text
)
#ifdef WIN32 # define clrscr() system("cls") #else # define clrsrc() printf("\033c") #endif
#ifdef WIN32 # define clrscr() system("cls") #else # define clrsrc() printf("\033c") #endif
__________________
tempest
View Public Profile
Find More Posts by tempest