Will Macros support multiple arguments ?

Answer Posted / phani kumar s

defination like :-

Max(x,y) x>y?x:y

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When can a far pointer be used?

593


What are the different properties of variable number of arguments?

669


Did c have any year 2000 problems?

660


What are the different file extensions involved when programming in C?

764


When a c file is executed there are many files that are automatically opened what are they files?

598






When should volatile modifier be used?

558


Why are algorithms important in c program?

625


What is a char in c?

559


Explain the difference between malloc() and calloc() in c?

581


#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); }

786


What is the difference between malloc() and calloc()?

619


Explain how can I make sure that my program is the only one accessing a file?

633


What are the restrictions of a modulus operator?

641


how to construct a simulator keeping the logical boolean gates in c

1732


What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?

945