InterviewSolution
Saved Bookmarks
| 1. |
Which of the following file format is generated once the C code is compiled?(a) .c(b) .h(c) .ino(d) .oThis question was addressed to me during an interview for a job.I'd like to ask this question from Compilation in division Arduino Programming of Arduino |
|
Answer» RIGHT choice is (d) .o Explanation: All C code is compiled to a .o file. This file FORMAT is called the OBJECT File Format. The COMPILER creates these object files during compilation, for each SOURCE code and then links each of these together for making the executable file for that language. |
|