I am a beginner in C++, and I am here to learn.
First of all, I made some programs in Borland C++, at school, but my school doesn't have Visual C++, and I don't have anybody to teach me how to program in Visual C++.
The problem is that when I try to change the linker subsystem (project settings) to Windows (/SUBSYSTEM:WINDOWS), I get this in output window:
1>------ Build started: Project: hew, Configuration: Debug Win32 ------
1> main.cpp
1>c:\users\mxmike\documents\visual studio 2010\projects\hew\main.cpp(1): fatal
error C1083: Cannot open include file: 'iostream.h': No such file or directory
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
My code is really simple:
#include <iostream.h>
#include <stdlib.h>
int main(int f)
{
int i=1;
return 1;
}
I simply don't get it. Would someone be so kind do explain to me?
Thank you for reading!