C Programming INTERVIEW QUESTIONS
| 1. |
C is a structural or high level or middle language? |
| |
- C is a middle level language.
- Because this language contains both the features of both high level language and low level languages.
- Also can be called as structured programming languages.
|
| 2. |
What are the different storage class specifiers in C? |
| |
There are different storage class specifiers in C are
- Auto
- Extern
- Register
- Static
- Extern
|
| 3. |
What are pointers? |
| |
Pointers point to specific areas in the memory. Pointers contain the address of a variable, which in turn may contain a value or even an address to another memory. |
| 4. |
What is a pointer value and address? |
| |
A pointer value is a data object that refers to a memory location.
Each memory location is numbered in the memory. The number attached to a memory location is called the address of the location. |