六神歌曲在哪里可以听:关于VC的使用-结果显示

来源:百度文库 编辑:杭州交通信息网 时间:2024/05/15 03:11:11
用VC编译C语言,怎么看结果。
就是DOS下的结果;

用cout包含的头文件是<iostream>
printf包含的头文件是<stdio.h>

#include<stdio.h>
void main()
{
printf("welcome@!!");
}
ctrl + f5 执行
#include<iostream.h>
void main()
{
cout<<"welcome@!!";
}