![]() |
Whatever I Try..
Ok, i'm very interested in learning C++ and totally understand the 'Hello World Program' in C++.
But everytime I try to compile (tried in Dev C++ and lcc win) it says iostream.h : File Not Found. I know its a header, but I thought it was one of those built into windows or something ? Thanx For and help in advance, Matt |
iostream.h usually comes with a C++ compiler. I've never used Dev-C++ before but I think they would include that, its a very common header.
And make sure you surround it with < and >, not with quotes when including, since it is a standard header file. |
Depending on your compiler you should include it as:
#include<iostream> or #include<iostream.h> |
in Dev-C++ (my friend uses it), it's #include <iostream>
|
| All times are GMT +1. The time now is 04:23 AM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.