
09.04.2010, 00:24
|
|
Участник форума
Регистрация: 25.08.2008
Сообщений: 187
Провел на форуме: 2066562
Репутация:
86
|
|
Сообщение от gold-goblin
Только начал читать книгу по С++.
Вопрос: Как в Microsoft Visual C++ 2008 Express Edition скомпилить прогу из файла?
код:
Код:
#include <iostream.h>
int main()
{
cout << "hello world\n";
return 0;
}
http://cplus.about.com/od/learnc/ss/vc2008_7.htm
з.ы.
Код:
#include <iostream>
int main () {
std::cout << "hello world\n";
std::cin.get();
return 0;
}
|
|
|