Answer Posted / jayasrinivas.donavalli
macro is a subroutine.
Need of Macro: Some times there is a need to call the set
of codedata again and agian in the program.In that
particular situation we can use macros.
Use of Macro can increase the efficiency of the program and
also decrease the length of the code.
Macro can be defined by using Define statement
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
how can I convert a string to a number?
What do you mean by recursion in c?
What is sizeof c?
Why does notstrcat(string, "!");Work?
What is a keyword?
What is bin sh c?
Where static variables are stored in c?
to find the closest pair
What is an auto keyword in c?
What is a constant?
How can I find the modification date of a file?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is null pointer in c?
Array is an lvalue or not?
What is declaration and definition in c?