An open API service indexing awesome lists of open source software.

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

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"
}
]
}

```