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 / sunil v r

11,6,11

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Difference between MAC vs. IP Addressing

1149


In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)

2127


What are the standard predefined macros?

1146


When should a type cast not be used?

1066


An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

1214


Is that possible to add pointers to each other?

1375


How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?

1035


Explain what standard functions are available to manipulate strings?

1076


List some of the static data structures in C?

1202


How can I handle floating-point exceptions gracefully?

1178


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

2437


Write a code to generate a series where the next element is the sum of last k terms.

1229


What is exit() function?

1023


How do you do dynamic memory allocation in C applications?

1089


What is the significance of scope resolution operator?

1414