1
2
3
4
5
6
7
# Compile print_twos.c to an object file.
$  gcc -c print_twos.c
# Creates (object file) print_twos.o.

# Link object file into an executable.
$  gcc  print_twos.o  test_print_twos.o  -o test_print_twos
# Creates (executable) test_print_twos

© Copyright 2022 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.