ler em outros idiomas / read in other languages

English French German Spain Italian Dutch
Russian Portuguese Japanese Korean Arabic Chinese Simplified
By Ferramentas Blog

terça-feira, 22 de junho de 2010

USANDO BIBLIOTECA CONIO2.H NO DEVC++


Tendo o Package da CONIO-2.0 e o Devcpp 4.9.9.2 instalado


*crie um projeto
*Vá em PROJETO-OPÇÕES DO PROJETO
*Na aba PARÂMETROS-CAMPO LINKER
*Digite -lconio
*Clique em OK
*Para usar a biblioteca olhe o código:

                   //teste simples

                           #include
                             using namespace std;
            int main()
{
                 clrscr();
                        getch();      
                   return 0;
}

Um comentário: