#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 / guest

12 6 11

Is This Answer Correct ?    70 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how can I read and write comma-delimited text?

638


What functions are used in dynamic memory allocation in c?

583


What is include directive in c?

633


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

601


while initialization of array why we use a[][2] why not a[2][]...?

1856






Can we declare variable anywhere in c?

529


What is uint8 in c?

631


What is the difference between single charater constant and string constant?

615


What is the difference between int main and void main in c?

581


What are derived data types in c?

599


I have seen function declarations that look like this

587


pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)

1853


Is c object oriented?

528


How can you pass an array to a function by value?

593


In C programming, what command or code can be used to determine if a number of odd or even?

612