Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

#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


Please Help Members By Posting Answers For Below Questions

Is struct oop?

962


Explain how do you determine the length of a string value that was stored in a variable?

1096


while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above

1200


How do you override a defined macro?

1210


i have a written test for microland please give me test pattern

2668


how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

3262


What is keyword in c?

966


Why static variable is used in c?

984


What functions are used in dynamic memory allocation in c?

1022


can anyone suggest some site name..where i can get some good data structure puzzles???

2022


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

1219


How do you generate random numbers in C?

1149


Write a program to identify if a given binary tree is balanced or not.

1094


Why pointers are used in c?

948


What standard functions are available to manipulate strings?

1078