/computer_systems

A few notes on the C programming language

Primary LanguageC

Computer Systems

A few exercises and notes regarding the C programming language

Setup

To compile the C code:

gcc -o <name_of_executable> <filename>

To run the executable:

./<name_of_executable>

Compile options

To see the assembly code generated by the C compiler:

gcc -S <filename>