ここから Code::Blocks をダウンロードしました: http://www.codeblocks.org/downloads/26
Cプログラミングを学んでいます。次のプログラムを実行すると、エラーが発生します。
iostream: No such file or directory
error: syntax error before "namespace"
warning: type defaults to `int' in declaration of `std'
warning: data definition has no type or storage class
In function `main':
error: `cout' undeclared (first use in this function)
error: (Each undeclared identifier is reported only once
error: for each function it appears in.)
error: `cin' undeclared (first use in this function)
次のプログラムを実行しています。
#include <iostream>
using namespace std;
int main()
{
int x;
x = 0;
do {
// "Hello, world!" is printed at least one time
// even though the condition is false
cout<<"Hello, world!\n";
} while ( x != 0 );
cin.get();
}
Dev-C++ を試しましたが、同じエラーが発生します。これを修正する方法は?