#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
State two uses of pointers in C?
How do you redirect a standard stream?
"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
What are the preprocessor categories?
why wipro wase
What is array in c with example?
What does #pragma once mean?
How can I implement a delay, or time a users response, with sub-second resolution?
What are the similarities between c and c++?
Is there any demerits of using pointer?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What the different types of arrays in c?
Explain enumerated types in c language?
What is structure and union in c?
Explain the difference between call by value and call by reference in c language?