View Single Post
Old Oct 27th, 2005, 5:12 PM   #4
farnush
Newbie
 
Join Date: Oct 2005
Posts: 12
Rep Power: 0 farnush is on a distinguished road
Quote:
Originally Posted by tempest
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...

#ifdef WIN32
#    define clrscr() system("cls")
#else
#    define clrsrc() printf("\033c")
#endif
i did some other programs only this program where it doesnt work...pissing me off
farnush is offline   Reply With Quote