fatal error: iostream.h: No such file or directory
Why code blocks returned this error after compile
I'm a beginner in C++
fatal error: iostream.h: No such file or directory
Why code blocks returned this error after compile
I'm a beginner in C++
In C++, You need to Include iostream without the 'h'
See More Information here http://www.cplusplus.com/reference/iostream/
use only #include<iostream>
as #include<iostream.h>
works in old compiler like turbo c++.