https://github.com/kylebing/c-demo
c 语言学习记录
https://github.com/kylebing/c-demo
Last synced: 3 months ago
JSON representation
c 语言学习记录
- Host: GitHub
- URL: https://github.com/kylebing/c-demo
- Owner: KyleBing
- Created: 2023-12-27T09:44:31.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T03:57:42.000Z (about 2 years ago)
- Last Synced: 2025-04-03T04:34:09.461Z (10 months ago)
- Language: C
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c 语言学习记录
## 一、Clion 中 `CMakeLists.txt` 的格式
```
cmake_minimum_required(VERSION 3.27)
project(c_demo C)
set(CMAKE_C_STANDARD 11)
include_directories(.)
add_executable(c_demo
main.c
Bill.c
Bill.h
)
```