C Tutorial
A simple C tutorial on memory allocation and command line parameters.
How to compile and execute a program:
- to compile
hello.c
run:clang -o hello hello.c
. - to execute the newly create binary
hello
run:./hello
- to do both at the same time:
clang -o hello hello.c && ./hello