简体   繁体   中英

Visual Studio 2015 “Hello World” Multiple Errors

I'm using visual studio 2015 update 1 and I get 448 errors on my very simple console application. How can I fix these errors. I had not this problem before (visual studio 2013 was working properly.)

#include "stdafx.h"  
#include <iostream>  

using namespace std;  

int main()  
{
    cout << "Hello World";  
    return 0;  
}

在此处输入图片说明 在此处输入图片说明

My problem solved by reinstalling visual studio update 1 I thank this user: ulrich-eckhardt

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM