what is the use of macro program



what is the use of macro program..

Answer / chaitali anand tendulkar

Macro is preprocessor directives that are defined using #
define. The combination backslash/new line is deleted
before preprocessing begins, so the directives can be
spread over several physical lines. this lines should
constitute a single logical line.

Is This Answer Correct ?    5 Yes 2 No

Post New Answer

More C Interview Questions

write a program which will count occurance of a day between two dates.

1 Answers   IonIdea,


for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????

7 Answers  


What are type modifiers in c?

0 Answers  


Can we access the array using a pointer in c language?

0 Answers  


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

0 Answers  






Do array subscripts always start with zero?

0 Answers  


program for comparing 2 strings without strcmp()

4 Answers  


What are the primitive data types in c?

0 Answers  


What is sizeof array?

0 Answers  


What is the difference between the local variable and global variable in c?

0 Answers  


What is the difference between array and pointer in c?

0 Answers  


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?

9 Answers   Ramco,


Categories