Compiler Error

I am a new user of codeBlocks compiler.
I installed it.And write a simple Hello World program.
But it shows the error Fatal error : iostream.h:No such file for directory.
When i delete this header file, it shows undeclared character, cout....

How can i fix it ??
closed account (3CXz8vqX)
O.o why did you delete it? Anyway the syntax is #include <iostream> there is a difference and it is important.
<iostream.h> is not a header defined by the C++ programming language standard, so it makes sense that your compiler doesn't know what you're talking about.

I think you meant
#include <iostream>
http://www.cplusplus.com/reference/iostream/
Topic archived. No new replies allowed.