Answers

Question and Answer:

  Home  C C++ Errors

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

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.

 195 views

More Questions for you: