Possible Duplicate:
Using Visual Studio's 'cl' from a normal command line
I have .net framework installed.
I did search before posting. I searched for compile c++ command line windows
.
Possible Duplicate:
Using Visual Studio's 'cl' from a normal command line
I have .net framework installed.
I did search before posting. I searched for compile c++ command line windows
.
For starters, you need a compiler.
then you run the compiler, passing the file to it as an argument, eg cl myfile.cpp
(you may want to pass some compiler options in there too, but which ones depend on which compiler you use - visual studio's, or gcc or Intels, etc).
MS has a brief starter guide for you, but this one for gcc is probably better as its describes all the steps involved.