| <<< Creating First Microsoft VC++ Project, cont. | Index | Creating First Microsoft VC++ Project, cont. >>> |
File main.cpp opens as an empty source file in the editor window. Type text of the "Hello, World!" program:
#include <iostream>
int main()
{
std::cout << "Hello, World!";
return 0;
}
| <<< Creating First Microsoft VC++ Project, cont. | Index | Creating First Microsoft VC++ Project, cont. >>> |