-
To build all executables type:
make
-
To build a specific executable type:
make name_of_c_program
-
To delete all executables type:
make clean
-
Type:
./executable_name
If you are learning C programming for the first time, the recommended order for exploring these examples is the following:
- hello_world.c
- variable_types.c
- flow_control.c
- loops.c
- pointers.c
- functions.c
- structures.c
- pass_command_line_options.c
- dynamically_allocated_arrays.c
- file_IO.c