请问在vc6.0中如何使用c++语言编写一个能打出“hellow world”的程序(要能正确运行

2024-11-06 19:55:49
推荐回答(1个)
回答1:


#include "stdafx.h"
#include "stdio.h"
#include "Windows.h"

int main(int argc, char* argv[])
{

system("pause");
printf("hello world!\n");
return 0;
}