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

https://github.com/martinmorando/c

Notes, code, and experiments with C
https://github.com/martinmorando/c

c learning-by-doing

Last synced: 12 months ago
JSON representation

Notes, code, and experiments with C

Awesome Lists containing this project

README

          

# Notes, code, and experiments with C

## Compiling & Running C Programs
### - Alternative A: fast
1. Compile the source code to generate the executable, using command: `g++ name.c`
2. Run the executable file, using command: `./a.out`

### - Alternative B: custom name
1. Compile: `g++ name.c -o customname`
2. Run: `./customname`