C Interview Questions
C Interview Questions
A macro is a preprocessor directive that provides a mechanism for token replacement in your source co
statement. Here is an example of a macro: Macros
Read / Ans
Read / Answer
87. Differentiate between a linker and Subscribe
linkage?
A linker converts an object code into an executable code by
linking together the necessary build in functions. The form and
place of declaration where the variable is declared in a program
determine
Read / Answer
88. What are the characteristics of arrays in Subscribe
C?
1) An array holds elements that have the same data type
2) Array elements are stored in subsequent memory locations3)
Two-dimentional array elements ar
Latest Answer: Array: can be
defined as a group of elements
stored in contigous memory (Answers: 2) Read /
locations and all elements h... Answer
Last Updated By Basavaraj
Yadwad on May 24, 2006
89. When does the compiler not implicitly Subscribe
generate the address of the first element of an
array?
Whenever an array name appears in an expression such
asØ array as an operand of the sizeof operatorØ array as
an operand of & operatorØ
Read / Answer
90. What is modular programming? Subscribe
If a program is large, it is subdivided into a number of smaller
programs that are called modules or subprograms. If a
complex problem is solved using more modules, this approach
is known as mo