[AC] programowanie w c++

Grzegorz Grasza grozo w pawlacz.com
Czw, 28 Paź 2004, 23:58:29 CEST


Użytkownik qweqwe qweqwe napisał:

>chcialem sobie przypomniec troszke c++. Do tej pory
>programowalem tylko na windowsie. Zaczalem on
>podstawowego i najprostrzego programu 
>
>#include <iostream.h>
>main()
>{
> cout << "Hello world !";
>}
>
>Nastepnie
>
>gcc hello.c -o hello
>
>zamiast skompilowanego pliku dostaje
>
>test.c:1:22: iostream.h: Nie ma takiego pliku ani
>katalogu
>hello.c: In function `main':
>hello.c:4: error: `cout' undeclared (first use in this
>function)
>hello.c:4: error: (Each undeclared identifier is
>reported only once
>hello.c:4: error: for each function it appears in.)
>
>iostream.h mam napewno w katalogu 
>/usr/include/c++/3.3.5/backward/
>
>Moze ktos ma jakis pomysl co jest nie tak??? System
>jest nowiutki :D
>  
>
według standardów powinno być:

#include <iostream>

using namespace std;

int main()
{
 cout << "Hello world !";
}

może tego nie być w starych podręcznikach i stąd problem...




Więcej informacji o liście dyskusyjnej pld-users-pl