♪C++/버그
'iostream.h': No such file or directory
Reubwe
2017. 10. 8. 18:38
#include <iostream> // **iostream.h <- 구버전
using namespace std; // std라는 이름공간에 선언되어 있는 모든 표준 C++라이브러리를 사용 (cin, cout, ... )
void main(void)
{
cout << "Hello World!\n";
return;
}