Answer Posted / kesar
Macro is define by user
it locks the lot modifications....
Example:
int a[2000];
If you use lot of places 2000 in your code
some time you want to change the 2000 to 500
then you must replace 2000 with by 500. this changes are
repeatedly by u....
In this case if you define macro
Just you change the macro it will effect over all program..
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can we initialize extern variable in c?
What should malloc() do?
Is c easy to learn?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Describe wild pointers in c?
What is function pointer c?
When should a type cast be used?
code for find determinent of amatrix
What is call by reference in functions?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
Why functions are used in c?
What are identifiers and keywords in c?
Why is python slower than c?
Explain why c is faster than c++?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?