FeedBack Form

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

C Programming Multiple Choice Questions and Answers

85. System generates message _______ whenever an attempt is made to assign a value to a NULL pointer, i.e.,zero address.
NULL pointer assignment
 
86. To share variables across different files, _______ storage class is used.
external
 
87. When arguments are passed by _______, the called function can possibly modify the values of these arguments.
reference
 
 
88. Library functions _______ and _______ provide the basic functionality for animation.
getimage(), putimage()
 
89. To scope of typedef is _______ whereas the scope of #define is always ________
local, global
 
90. In a recursive call, function gets a fresh set of _____ variables, independent of the previous calls.
automatic