Any app build with visual studio 2013/2015 hang

╄→гoц情女王★ 提交于 2019-12-23 04:36:40

问题


I have some strange problem with visual :-/ I can't build simple console application (with with windows problem it's the same). Console window don't apper, visual studio hang :-/ I don't have these problem last time I making console app (month ago I think). I have the same problem in vs 2015 and 2013 on windows 7. Somebody have the same problem ? Mayby it's some windows updated, or some visual update. I don't have this problem with. When I run built application manual (no from visual) application also hang :-/ Sample code I tried to run:

#include <cstdlib>
#include <cstdio>

int main(int argc, char **argv)
{
    printf("Hello");
    system("pause");
    return 0;
}

SOLUTION: That was my antivirus Avast, it don't ask, just block my app :-/ something change in latest update.

来源:https://stackoverflow.com/questions/33593036/any-app-build-with-visual-studio-2013-2015-hang

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!