上行吞吐量:C语言源代码是什么

来源:百度文库 编辑:高考问答 时间:2024/05/07 04:02:46

就是用c语言编写的代码。
将C语言源代码经过编译链接就成了我们常用的可执行程序。

#include<stdio.h>
void main()
{
printf("welcome to visual c++");
}
这就是C语言的源代码

int main()
{
printf("这就是C语言源代码\n");
}

就是编写好的c源代码