Louise Posted November 25, 2007 at 05:54 PM Report Share #150277 Posted November 25, 2007 at 05:54 PM Boa tarde. Eu ja a mt k nao pegava em c agora so uso o c++ mas hj ao tentar ajudar um colega não consegui limpar o ecra ? Tou a usar o dev-c++ e tentei o comando system(clear) e o clrscr(), inclui o conio.h , e nenhum deles e reconhecido pelo compilador ? Sera k alguém sabe dizer onde estou a errar. bgd. Link to comment Share on other sites More sharing options...
Hipnoted Posted November 25, 2007 at 05:55 PM Report Share #150278 Posted November 25, 2007 at 05:55 PM Em Windows é: system("cls");. Em linux trocas o "cls" por "clear". "Nunca discutas com um idiota. Eles arrastam-te até ao seu nível e depois ganham-te em experiência" Link to comment Share on other sites More sharing options...
Louise Posted November 25, 2007 at 06:19 PM Author Report Share #150283 Posted November 25, 2007 at 06:19 PM ah ok bigada. Não a nenhum comando k funcione nos 2 casos??? Link to comment Share on other sites More sharing options...
Triton Posted November 25, 2007 at 06:33 PM Report Share #150289 Posted November 25, 2007 at 06:33 PM ah ok bigada. Não a nenhum comando k funcione nos 2 casos??? Eu pelo menos não conheço, podes é utilizar o pré-processador do C. #ifdef LINUX #define CLEAR "clear" #else #define CLEAR "cls" #endif system(CLEAR); Para veres as macros específicas de cada sistema, podes tentar aqui e aqui. <3 life Link to comment Share on other sites More sharing options...
Louise Posted November 25, 2007 at 07:24 PM Author Report Share #150307 Posted November 25, 2007 at 07:24 PM bgd Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now