What is macro in c?
Difference between single linked list & double linked list
What is fifo & lifo?
What is stack & queue?

Submitted by: Administrator
Macros are preprocessor directives that are defined using #define directive. Macros consist of two parts Macro_Name, & Macro_Substitution_Text.
Before the source code gets complied, the preprocessor will check for the presence of macros. & wherever it found that macro simply replaces that macros with substitution text.

Macros are not Type Safe.
Submitted by: Administrator

Read Online ERRORS Job Interview Questions And Answers