敬请各位高手解决vc++2010的问题。谢谢
运行附件的“my_c”→“Debug”→“my_c.exe”,以下代码为何不能显示:"Hello world!// my_c.cpp: 主项目文件。
#include "stdafx.h"
#include "Form1.h"
#include<iostream>
using namespace std;
using namespace my_c;
[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
// 在创建任何控件之前启用 Windows XP 可视化效果
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
// 创建主窗口并运行它
Application::Run(gcnew Form1());
cout <<"Hello world!\n";
std::cout <<"Hello world!\n";
printf ("Hello world!\n");
return 0;
}
my_c.zip
(4.3 MB)