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

ans : 11 6 0

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

State two uses of pointers in C?

801


How do you redirect a standard stream?

829


"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks

859


What are the preprocessor categories?

804


why wipro wase

2022






What is array in c with example?

850


What does #pragma once mean?

888


How can I implement a delay, or time a users response, with sub-second resolution?

824


What are the similarities between c and c++?

778


Is there any demerits of using pointer?

785


how to print the character with maximum occurence and print that number of occurence too in a string given ?

2212


What the different types of arrays in c?

787


Explain enumerated types in c language?

766


What is structure and union in c?

788


Explain the difference between call by value and call by reference in c language?

845