segment
(usa Slackware)
Enviado em 30/08/2007 - 09:00h
Ola pessoal, estou com um problema aqui q nao sei pq acontece...Estou usando o g++ 3.4.6 q vem no slack 11...Dai consegui compilar um programa simples de "Ola mundo"...e deu certo.
Veja no código que nao coloquei .h no iostream. e rolou normal...
#include <iostream>
int main()
{
cout << "Ola mundo!";
}
g++ -o ola Ola.cpp
ola
Ola mundo!
Até ai tudo bem..o problema é quando eu tentei compilar outra fonte, la vai...
Neste usei o .h pois sem o .h deu o mesmo erro q irei mostrar mais abaixo.
#include <iostream.h>
#include <conio.h>
Resto do conteúdo...
Me retornou o seguinte erro.
-> In file included from /usr/lib/gcc/i486-slacware-linux/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31, from ex1.cpp:1:
/usr/lib/gcc/i486-slackware-linux/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
ex1.cpp:2:19: conio.h: No such file or directory
É isso ai que retorna pessoal... :/
E testei por o .h no primeiro fonte de "Ola mundo", e me retornou o mesmo erro mostrado acima..
Alguem sabe me dizer o que poderia ser isso ?
Estou começando em C++, pois estou vendo na faculdade..Se alguem puder me ajudar ficarei bastante agradecido...
VLw pessoal..