#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
x=11
k=11
j=6
| Is This Answer Correct ? | 4 Yes | 20 No |
Post New Answer View All Answers
Describe wild pointers in c?
Explain pointers in c programming?
What is main () in c?
What are the different types of objects used in c?
Are pointers really faster than arrays?
how do you execute a c program in unix.
What is a pointer on a pointer in c programming language?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is the use of getch ()?
Is c a great language, or what?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What is the difference between struct and typedef struct in c?
write a program to find out prime number using sieve case?
how should functions be apportioned among source files?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.