
07.05.2008, 20:39
|
|
Постоянный
Регистрация: 02.03.2008
Сообщений: 893
Провел на форуме: 5365841
Репутация:
712
|
|
PHP код:
#include <iostream.h>
#include <stdafx.h>
int main()
{
std::cout "\n";
return 0;
}
Ошибки:
PHP код:
error C2653: 'std' : is not a class or namespace name
error C2065: 'cout' : undeclared identifier
error C2143: syntax error : missing ';' before 'string'
При добавлении в начало using namespace std; ни чего не меняется 
|
|
|