Question-91. What is difference between far and near pointers ?
Answer- In first place they are non-standard keywords. A near pointer can access only 2^15 memory space and far pointer can access 2^32 memory space. Both the keywords are implementation specific and are non-standard.
Question-92. Can we nest comments in a C code ?
Answer- No, we cannot.
Question-93. Which control loop is recommended if you have to execute set of statements for fixed number of times ?
Answer- for – Loop.
Question-94. What is a constant ?
Answer- A value which cannot be modified is called so. Such variables are qualified with the keyword const.
Question-95. Can we use just the tag name of structures to declare the variables for the same ?
Answer- No, we need to use both the keyword ‘struct’ and the tag name.
Question-96. Can the main() function left empty ?
Answer- Yes, possibly the program doing nothing.
Question-97. Can one function call another ?
Answer- Yes, any user defined function can call any function.
Question-98. Apart from Dennis Ritchie who the other person who contributed in design of C language ?
Answer- Brain Kernighan.
Question-99. What is C language ?
Answer- C is a mid level and procedural programming language.
Question-100. Why C is known as a mother language ?
Answer- C is known as a mother language because most of the compilers, kernals and JVMs are written in C language.