#define MAX(x,y) (x) > (y) ? (x) : (y)
main()
{
int i = 10, j = 5, k = 0;
k = MAX(i++, ++j);
printf("%d %d %d", i,j,k);
}

what will the values of i , j and k?
}

Answer Posted / manoj

10,6,11

Is This Answer Correct ?    0 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between far and near in c?

589


What oops means?

570


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

613


Write a code to generate a series where the next element is the sum of last k terms.

721


What is adt in c programming?

598






How to write a code for reverse of string without using string functions?

1569


what is the structure pointer?

1636


What does sizeof return c?

588


How do you write a program which produces its own source code as output?

599


how to find anagram without using string functions using only loops in c programming

2708


What type is sizeof?

573


What is strcmp in c?

589


Does sprintf put null character?

586


What is a sequential access file?

643


What is function pointer c?

579