c/c
- one dark pro主题
一款我用得比较久的暗色系主题色。
one dark pro
- power mode
编码的时候打字的效果,支持很多种,安装万插件后可以在VSCode设置中进行动效设置。当你编写代码的时候就会发现效果。
power mode
- Gitlens
可以方便地在代码中查看代码修改记录,这个需要配合git代码管理使用,如果不需要可以先不用安装。
gitlens
安装C编译链gcc是Linux常用的C语言其中一种编译链工具,使用命令安装gcc
ubuntu@ubuntu-virtual-machine:~/下载$ sudo apt install gcc
使用命令查看gcc版本信息:
ubuntu@ubuntu-virtual-machine:~/下载$ gcc --version
gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
安装C 编译链
g 是Linux常用的一种C 程序的编译链工具,使用命令安装g
ubuntu@ubuntu-virtual-machine:~/下载$ sudo apt install gcc
使用命令查看g 版本信息:
ubuntu@ubuntu-virtual-machine:~/下载$ g --version
g (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
VSCode调试C语言程序
- 创建C语言工作目录
在本用户的主目录下创建一个~/develop/test_001的目录。
ubuntu@ubuntu-virtual-machine:~$ cd
ubuntu@ubuntu-virtual-machine:~$ mkdir develop/test_001 -p
ubuntu@ubuntu-virtual-machine:~$
- 用VSCode打开目录
点击菜单“File” ,“Open Folder”,选择目录test_001,点击“OK”打开