Top Embedded C programming Interview questions
and answers for freshers and experienced on embedded system concepts like RTOS,
ISR, processors etc. with best answers.
1)
What is the use of volatile keyword?
The C's volatile
keyword is a qualifier that tells the compiler not to optimize when applied to
a variable. By declaring a variable volatile, we can tell the compiler that the
value of the variable may change any moment from outside of the scope of the program.
A variable should be declared volatile whenever its value could change
unexpectedly and beyond the comprehension of the compiler.
In those cases it is required not to optimize the code, doing so may lead to erroneous result and load the variable every time it is used in the program. Volatile keyword is useful for memory-mapped peripheral registers, global variables modified by an interrupt service routine, global variables accessed by multiple tasks within a multi-threaded application.
In those cases it is required not to optimize the code, doing so may lead to erroneous result and load the variable every time it is used in the program. Volatile keyword is useful for memory-mapped peripheral registers, global variables modified by an interrupt service routine, global variables accessed by multiple tasks within a multi-threaded application.
2) Can a variable be
both const and volatile?
The const keyword make
sure that the value of the variable declared as const can't be changed. This
statement holds true in the scope of the program. The value can still be
changed by outside intervention. So, the use of const with volatile keyword
makes perfect sense.
3)
Can a pointer be volatile?
If we see the
declaration volatile int *p, it means that the pointer itself is not volatile
and points to an integer that is volatile. This is to inform the compiler that
pointer p is pointing to an integer and the value of that integer may change
unexpectedly even if there is no code indicating so in the program.
4)
What is size of character, integer, integer pointer, character pointer?
·
The sizeof character
is 1 byte.
·
Size of integer is 4
bytes.
·
Size of integer
pointer and character is 8 bytes on 64 bit machine and 4 bytes on 32 bit
machine.
5)
What is NULL pointer and what is its use?
The NULL is a macro
defined in C. Null pointer actually means a pointer that does not point to any
valid location. We define a pointer to be null when we want to make sure that
the pointer does not point to any valid location and not to use that pointer to
change anything. If we don't use null pointer, then we can't verify whether
this pointer points to any valid location or not.
6)
What is void pointer and what is its use?
The void pointer means
that it points to a variable that can be of any type. Other pointers points to
a specific type of variable while void pointer is a somewhat generic pointer
and can be pointed to any data type, be it standard data type(int, char etc) or
user define data type (structure, union etc.). We can pass any kind of pointer
and reference it as a void pointer. But to dereference it, we have to type the
void pointer to correct data type.
7)
What is ISR?
An ISR(Interrupt
Service Routine) is an interrupt handler, a callback subroutine which is called
when a interrupt is encountered.
8)
What is return type of ISR?
ISR does not return
anything. An ISR returns nothing because there is no caller in the code to read
the returned values.
9)
What is interrupt latency?
Interrupt latency is
the time required for an ISR responds to an interrupt.
10)
How to reduce interrupt latency?
Interrupt latency can
be minimized by writing short ISR routine and by not delaying interrupts for
more time.
11)
Can we use any function inside ISR?
We can use function inside ISR as long as that
function is not invoked from other portion of the code.
12) Can we use printf
inside ISR?
Printf function in ISR
is not supported because printf function is not reentrant, thread safe and uses
dynamic memory allocation which takes a lot of time and can affect the speed of
an ISR up to a great extent.
13) Can we put
breakpoint inside ISR?
Putting a break point
inside ISR is not a good idea because debugging will take some time and a
difference of half or more second will lead to different behavior of hardware.
To debug ISR, definitive logs are better.
14)
Can static variables be declared in a header file?
A static variable
cannot be declared without defining it. A static variable can be defined in the
header file. But doing so, the result will be having a private copy of that
variable in each source file which includes the header file. So it will be wise
not to declare a static variable in header file, unless you are dealing with a
different scenario.
15)
Is Count Down_to_Zero Loop better than Count_Up_Loops?
Count down to zero
loops are better. Reason behind this is that at loop termination, comparison to
zero can be optimized by the compiler. Most processors have instruction for
comparing to zero. So they don't need to load the loop variable and the maximum
value, subtract them and then compare to zero. That is why count down to zero
loop is better.
16)
What are inline functions?
The ARM compilers
support inline functions with the keyword __inline. These functions have a
small definition and the function body is substituted in each call to the
inline function. The argument passing and stack maintenance is skipped and it
results in faster code execution, but it increases code size, particularly if
the inline function is large or one inline function is used often.
17) Can include files
be nested?
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.
18)
What are the uses of the keyword static?
Static keyword can be
used with variables as well as functions. A variable declared static will be of
static storage class and within a function, it maintains its value between
calls to that function. A variable declared as static within a file, scope of
that variable will be within that file, but it can't be accessed by other
files.
Functions declared
static within a module can be accessed by other functions within that module.
That is, the scope of the function is localized to the module within which it
is declared.
19)
What are the uses of the keyword volatile?
Volatile keyword is
used to prevent compiler to optimize a variable which can change unexpectedly
beyond compiler's comprehension. Suppose, we have a variable which may be changed
from scope out of the program, say by a signal, we do not want the compiler to
optimize it. Rather than optimizing that variable, we want the compiler to load
the variable every time it is encountered. If we declare a variable volatile,
compiler will not cache it in its register.
20)
What is Top half & bottom half of a kernel?
Sometimes to handle an
interrupt, a substantial amount of work has to be done. But it conflicts with
the speed need for an interrupt handler. To handle this situation, Linux splits
the handler into two parts – Top half and Bottom half. The top half is the routine that actually
responds to the interrupt. The bottom half on the other hand is a routine that
is scheduled by the upper half to be executed later at a safer time.
All interrupts are
enabled during execution of the bottom half. The top half saves the device data
into the specific buffer, schedules bottom half and exits. The bottom half does
the rest. This way the top half can service a new interrupt while the bottom
half is working on the previous.
No comments:
Post a Comment