#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 / vignesh1988i
i=12
j=6
k=11
Is This Answer Correct ? | 20 Yes | 10 No |
Post New Answer View All Answers
Why is it that not all header files are declared in every C program?
Explain output of printf("Hello World"-'A'+'B'); ?
What is meant by operator precedence?
How do we print only part of a string in c?
Can you please explain the difference between malloc() and calloc() function?
What is cohesion in c?
What is structure data type in c?
Can main () be called recursively?
Why use int main instead of void main?
Write a program in c to replace any vowel in a string with z?
regarding pointers concept
What do mean by network ?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How was c created?
Can we access array using pointer in c language?