大樱桃早熟用什么药:关于VC的使用-结果显示

来源:百度文库 编辑:中科新闻网 时间:2024/05/08 10:36:22
用VC编译C语言,怎么看结果。
就是DOS下的结果;

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

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