摘要:1、安装gcc编译器 查看gcc版本 gcc -v 2、第一个C程序 Hello world vi demon1.c #include <stdio.h> int main(){ printf("Hello, World! \n"); return 0; } 编译 执行 C程序 gcc demon1
阅读全文
posted @ 2022-03-28 10:16
|
|||
03 2022 档案
摘要:1、安装gcc编译器 查看gcc版本 gcc -v 2、第一个C程序 Hello world vi demon1.c #include <stdio.h> int main(){ printf("Hello, World! \n"); return 0; } 编译 执行 C程序 gcc demon1
阅读全文
posted @ 2022-03-28 10:16
摘要:项目根目录下新建 .vscode 文件夹,然后在该文件夹下创建launch.json launch.json文件内容如下 { "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name":
阅读全文
posted @ 2022-03-09 17:41
摘要:1、创建博客表Post 2、插入默认数据 3、查询 4、创建用户表 5、post表中增加user_id字段 post表增加外键。 user_id 对应的是user表中的id字段 6、用户表增加一个用户 7、插入用户 8、where 查询
阅读全文
posted @ 2022-03-06 18:54
|
|||