https://github.com/laqudee/c-projects
C language learn and action
https://github.com/laqudee/c-projects
c clanguage learn-to-code
Last synced: over 1 year ago
JSON representation
C language learn and action
- Host: GitHub
- URL: https://github.com/laqudee/c-projects
- Owner: laqudee
- Created: 2023-09-27T06:46:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-20T09:55:14.000Z (over 2 years ago)
- Last Synced: 2025-01-28T15:18:51.947Z (over 1 year ago)
- Topics: c, clanguage, learn-to-code
- Language: C
- Homepage:
- Size: 388 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C Language Learn And Action
> C Primer Plus 第6版 中文版
## Command Line 执行方式
```sh
gcc -std=c11 [filename].c
# windows
.\a.exe
```
### mac
```sh
clang [filename].c
# or
gcc [filename].c
./a.out
```
## VSCode launch 配置
- `"program": "${workspaceFolder}/chapter-2/a.exe",`
- 根据需要进行修改
```json
{
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) 启动",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/chapter-2/a.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"console": "externalTerminal"
}
]
}
```