Oct 2, 2015 at 9:56pm UTC
how to use the "normal" C++ code in visual studio 2015? i can't even hello-world-ing my computer -,-
Oct 3, 2015 at 1:00am UTC
Visual C++ has to be installed separately apparently, usually as a custom install.
I was able to install Visual C++ and also noticed that MFC was installed.
Doing a default install pushes C# and other MS-copyrighted stuff.
Oct 3, 2015 at 3:29pm UTC
actually, there is visual C++ in visual studio 2015, but i don't know what type for console here.
http://i62.tinypic.com/vnilo9.jpg
and there's pch header at the beginning of the code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//
// pch.cpp
// Include the standard header and generate the precompiled header.
//
#include "pch.h"
#include <iostream>
using namespace std;
int main() {
std::cout << "hello,world...!" << std::endl;
std::cin.get();
return 0;
}
Last edited on Oct 3, 2015 at 3:29pm UTC
Oct 3, 2015 at 6:11pm UTC
Last edited on Oct 3, 2015 at 6:17pm UTC
Oct 3, 2015 at 6:39pm UTC
@borges: thx for the information, i'll install it
Oct 3, 2015 at 9:17pm UTC
@chipp:
I downloaded the ISO of the entire package, not the Web installer setup.
https://www.visualstudio.com/downloads/download-visual-studio-vs
Under the "Visual Studio Downloads" header select "Visual Studio 2015" and then select Community 2015.
You get the option to download the web installer or the ISO. The ISO is 3.7GB in size.
Last edited on Oct 3, 2015 at 9:20pm UTC