欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

第一个c程序

程序员文章站 2022-05-12 17:01:04
输出hello world #include int main() { printf("hello word"); return 0; }...

输出hello world

#include

int main()

{

printf("hello word");

return 0;

}