摘要: #include <stdio.h> /** * 声明主函数 * @author xiaqiuchu * @version 0.0.1 * @date 2020/09/27 * * */ int main() { // 结构体声明 struct User { char name[5]; unsign 阅读全文
posted @ 2020-09-27 10:15 夏秋初 阅读(299) 评论(0) 推荐(0)
摘要: 转自:https://blog.csdn.net/zhangvalue/article/details/84983836 新建一个.c文件(用来编写代码),输入命令: #include<stdio.h> int main(){ printf("hello\n"); return 0; } 编译,输入 阅读全文
posted @ 2020-09-27 10:08 夏秋初 阅读(169) 评论(0) 推荐(0)