C C++ Errors Question:
Download Questions PDF

Explain 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 C C++ Errors Interview Questions And Answers PDF

Previous QuestionNext Question
Display this kind of output on screen.
1
0 1
1 0 1
3. Display this kind of output on screen.
1
1 0
1 0 1
4. Display this kind of output on screen.
1
1 0
1 0 1
5.Display this kind of output on screen.
1
2 3
4 5 6
7 8 9 10
Explain difference between c/c++ programing language?
what is necessity of c++ when existing c programing language?