C Language INTERVIEW QUESTION & ANSWERS
Languages
86. | What are the types of unary operators? |
---|---|
|
87. | What is the difference between break and continue? |
---|---|
The break statement is used to exit from all the loop constructs (while, do while and for) and switch.case statements, whereas the continue statement is used to skip all subsequent instructions and can control back to the loop control. The continue statement can be used for any loop construct. |
88. | What is storage class? |
---|---|
The storage class in C provides the complete information about the location and visibility of variables. Scope of a variable means the portion of the program within which it can be referenced and lifetime means the time of its existence in the memory. |
89. | What are the different storage classes in C? |
---|---|
|
Posted by Ajay. (Jun 15, 2014) | |
Static Variables are global variables and can be as local variables, where its scope is with in file if declared global and is with in function if declared local. Static variable are stored in data segment so even if the function exits the variable still exists. |
|
Posted by Kamayani. (May 15, 2014) | |
Well... registers and auto have initial value as garbage, registers are the only storage class which are located in Cpu registers, rest all are located in the memory and lastly, STATIC IS LOCAL TO THE BLOCK WHEREAS, EXTERN IS GLOBAL ! (-_-) |
90. | What are the types of bitwise operator? |
---|---|
|