Hii guys..
Iam having problems with visual c++
i created a win32 application in visual c++..then if tried to execute a noraml turboc3 developed C++ porogram..then it is showing some errors regarding the header files...
the error is...

1>cvar.cpp
1>d:\mallika\stuff\cpp\cvar.cpp(1) : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory
1>Build log was saved at "file://c:\Users\Mallika.Maruthi-PC\Documents\Visual Studio 2008\Projects\11\11\Debug\BuildLog.htm"
1>11 - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

how to solve it..pls help..

Recommended Answers

All 2 Replies

that turbo c++ program is using deprecated header files -- you will have to change the code to use current c++ standards, such as <iostream> instead of <iostream.h> There will most likely be other code changes you will have to make, such as std::cin or using std::cin statements.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.