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
What is function definition in c?
Why c is called top down?
What is the best way of making my program efficient?
Is printf a keyword?
What is integer constants?
Is c dynamically typed?
What are multidimensional arrays?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is a macro in c preprocessor?
Explain how do you declare an array that will hold more than 64kb of data?
What is the role of this pointer?
What are the features of c languages?
Why do some versions of toupper act strangely if given an upper-case letter?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Array is an lvalue or not?