FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

C Programming INTERVIEW QUESTIONS

Languages
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.
Your Name Your Email-ID
Your Answer
 
2. What are the different storage class specifiers in C?
  There are different storage class specifiers in C are
  • Auto
  • Extern
  • Register
  • Static
  • Extern
Your Name Your Email-ID
Your Answer
 
 
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.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer