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 |
write a program which will count occurance of a day between two dates.
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
What are type modifiers in c?
Can we access the array using a pointer in c language?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Do array subscripts always start with zero?
program for comparing 2 strings without strcmp()
What are the primitive data types in c?
What is sizeof array?
What is the difference between the local variable and global variable in c?
What is the difference between array and pointer in c?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?