Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory when trying to compile your C / C++ code
Posted
Updated 21-Feb-12 5:46am
v2
Comments
zarnigar altaf 21-Feb-12 11:36am    
I got answer
zarnigar altaf 21-Feb-12 11:37am    
answer for all those have problem in <iostream.h> in vc 2008
write it as given below:

#include <iostream>

void main()
{

std::cout<<"Hello";

}
Dave Kreskowiak 21-Feb-12 11:47am    
Modified tags. Removed C# and added C++ as this has nothing to do with C# at all.

1 solution

answer for all those have problem in <iostream.h> in vc 2008
write it as given below:

#include <iostream>

void main()
{

std::cout<<"Hello";

}
 
Share this answer
 
Comments
fjdiewornncalwe 21-Feb-12 11:53am    
Thanks for posting your solution.
zarnigar altaf 21-Feb-12 12:00pm    
pleasur

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900