$ make
c11 -g -Wall -c convert.c
c11 -g -Wall -c main.c
c11 -g -Wall convert.o main.o -o convert
./convert
and if your code is correct you
should see the following output:
1234 (base 10) = 4D2 (base 16)
ABCD (base 16) = 43981 (base 10)
1234 (base 10) = 2322 (base 8)
4567 (base 8) = 2423 (base 10)
1234 (base 10) = 10011010010 (base 2)
10011011 (base 2) = 155 (base 10)
1234 (base 10) = 5414 (base 6)
4532 (base 6) = 1064 (base 10)
convert.c
to the Checkin tab on the course website, as you
were shown in the recitation.