Answer Posted / shruti
no,
macros dont support multiple arguments..
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Explain void pointer?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is the difference between exit() and _exit() function?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What are the advantage of c language?
Explain the difference between strcpy() and memcpy() function?
What are the two types of structure?
write a program to display all prime numbers
how could explain about job profile
How can I get back to the interactive keyboard if stdin is redirected?
What is the difference between strcpy() and memcpy() function in c programming?
What is the purpose of main() function?
how do you execute a c program in unix.