Jump to content

Instalar biblioteca no Linux


migg
 Share

Recommended Posts

Como instalo a biblioteca iostream.h e conio.h no Linux

#include <stdio.h>
#include <stdlib.h>
#include <iostream.h>
#include <string.h>
#include <conio.h>
//------------#DEFINE---------------------
#define AZUL BLUE

//FUNÇÔES------------------------------
void textocolorido(char *texto, int int cor){
textcolor(cor);
cprintf("%s", texto);
return;
}
//------------MAIN---------------------
main()

{


return;

}

ao compilar dá o seguinte erro

sistema.c:3:20: error: iostream: Ficheiro ou directoria inexistente
sistema.c:5:19: error: conio.h: Ficheiro ou directoria inexistente
sistema.c:9: error: two or more data types in declaration specifiers
Link to comment
Share on other sites

❝The idea that I can be presented with a problem, set out to logically solve it with the tools at hand, and wind up with a program that could not be legally used because someone else followed the same logical steps some years ago and filed for a patent on it is horrifying.❞- John Carmack on software patents

A list  of command line apps

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.