#define MAX(x,y) (x) >(y)?(x):(y)
main()
{
inti=10,j=5,k=0;
k= MAX(i++,++j);
printf("%d..%d..%d",i,j,k);
}
No Answer is Posted For this Question
Be the First to Post Answer
what are the interview question's in the language c
What is the use of a static variable in c?
What is a const pointer?
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
What is static function in c?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
write a c program to convert fahrenheit to celsius?
what is the diference between pointer to the function and function to the pointer?
Can 'this' pointer by used in the constructor?
What is the best style for code layout in c?
why i join syntel?
23 Answers ABC, Syntel, TCS,
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }