#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);
}
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS HEADER?
What is meant by global static? why we have to use static variable instead of Global variable
Explain the difference between strcpy() and memcpy() function?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is the newline escape sequence?
Describe dynamic data structure in c programming language?
How can I read/write structures from/to data files?
What is the use of sizeof () in c?
Where local variables are stored in c?
How to print India by nested loop? I IN IND INDI INDIA
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }