sketchpad

A collection of personal and technical notes.

View the Project on GitHub arantebw/sketchpad

C Programming

.clang-format template:

---
BasedOnStyle: LLVM        # Can be LLVM, Google, Mozilla, WebKit, etc.
IndentWidth: 8            # Number of spaces per indentation level
TabWidth: 8               # Width of tab character
UseTab: Never             # Options: Never, ForIndentation, Always
BreakBeforeBraces: Allman # Optional: brace style
---

Commands

Compile a program to a specific standard:

gcc path/file.c -o file -std=<standard>

Compile a C program to the ANSI version.

gcc path/file.c -ansi

Execute an executable C program.

./a.out