ERRORS Question:
Download Questions PDF

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

Answer:

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.

Download ERRORS Interview Questions And Answers PDF

Previous QuestionNext Question
What is Difference Between Server.Response and Response.Redirect in ASP.Net with C#?What is difference between c/c++ programing language?
What is necessity of c++ when existing c programing language?