migg Posted October 12, 2009 at 06:12 PM Report Share #291379 Posted October 12, 2009 at 06:12 PM 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 More sharing options...
lufinima Posted October 12, 2009 at 06:37 PM Report Share #291384 Posted October 12, 2009 at 06:37 PM Oh rapaz isso são bibliotecas standard C++, retira os .h dentro de <> e vê se já não funciona. em relação a conio não sei se tens instalada uma vez que não é standard mas logo vês, senão o google é teu amigo Link to comment Share on other sites More sharing options...
Triton Posted October 12, 2009 at 06:51 PM Report Share #291388 Posted October 12, 2009 at 06:51 PM conio acho que não é standard. <3 life Link to comment Share on other sites More sharing options...
IceBrain Posted October 12, 2009 at 11:05 PM Report Share #291446 Posted October 12, 2009 at 11:05 PM http://en.wikipedia.org/wiki/Conio.h ❝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 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