Is there a function called clrscr() defined in stdio.h or conio.h??? If not, how can I do a simple cls?
Where can I get a complete list of all the predefined functions C has and what they do??
This is a discussion on Functions problems! within the C Programming forums, part of the General Programming Boards category; Is there a function called clrscr() defined in stdio.h or conio.h??? If not, how can I do a simple cls? ...
Is there a function called clrscr() defined in stdio.h or conio.h??? If not, how can I do a simple cls?
Where can I get a complete list of all the predefined functions C has and what they do??
---Programming is like roaming, you never know where you'll end at------
If 'here' is pronounced as 'hear', why 'there' isnt pronounced as 'dear'??
paninaro3000@yahoo.com
>Is there a function called clrscr() defined in stdio.h or conio.h???
Yes, there is! It is from the conio.h library.
>If not, how can I do a simple cls?
system("cls");
>Where can I get a complete list of all the predefined functions C has and what they do??
Only the functions defined by ANSI C maybe available with all compilers. And on the other side, each compiler might offer it's own set of functions. You really need to check the documentation on your compiler for the list of functions it can provide.
For a list of ANSI C functions, check this