Embedded Software Engineer Question:
Tell me can include files be nested?
Answer:
Yes. Include files can be nested any number of times. But you have to make sure that you are not including the same file twice. There is no limit to how many header files that can be included. But the number can be compiler dependent, since including multiple header files may cause your computer to run out of stack memory.
Previous Question | Next Question |
Explain what are the essential components of embedded system? | Tell me what is ISR? |