Exam (elaborations)
CS 240 Exam 1|54 Questions with 100% Correct Answers | Verified | Updated 2024
- Course
- Institution
Write the command to compile a single C file named "hello.c" into an object file called "hello.o". - ️️$ gcc -c hello.c Write the command to link two object files named "hello.o" and "goodbye.o" into the executable called "application". - ️️$ gcc -o application hello.o goodbye.o Can y...
[Show more]