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

https://github.com/kaierikniermann/c_cpp-mini-project-template

This is a template you can use for small quick C projects
https://github.com/kaierikniermann/c_cpp-mini-project-template

c cpp template-project

Last synced: about 1 month ago
JSON representation

This is a template you can use for small quick C projects

Awesome Lists containing this project

README

          

# C-mini-project-template

This is a basic demo template for a simple C or C++ project, mainly for students who are just starting to learn C/C++.

## Usage

1. In the `Makefile` specify the language you want to use via the `LANG` variable, also adjust the compiler `CC` accordingly

2. `/src` is for the source filers and `/include` for the header files

## Note

This is really meant more for people just starting to work with C/C++ who maybe want to have a more clean project structure. This does not scale to more complex projects, for that you might want to look at better build tools or improve this setup.

I included some demo files in the `/src` and `/include` folder.