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
- Host: GitHub
- URL: https://github.com/martinmorando/c
- Owner: martinmorando
- License: mit
- Created: 2025-06-06T23:35:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-15T17:37:09.000Z (about 1 year ago)
- Last Synced: 2025-06-15T18:54:40.790Z (about 1 year ago)
- Topics: c, learning-by-doing
- Language: C
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`