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 / manoj

10,6,11

Is This Answer Correct ?    0 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Do you have any idea how to compare array with pointer in c?

993


Why is this loop always executing once?

1002


A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

1122


Why is sizeof () an operator and not a function?

987


What is c language in simple words?

1018


the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function

1267


What are the similarities between c and c++?

1007


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

1219


When can you use a pointer with a function?

996


Which header file should you include if you are to develop a function which can accept variable number of arguments?

1324


Ow can I insert or delete a line (or record) in the middle of a file?

958


swap 2 numbers without using third variable?

1086


How do I use strcmp?

1027


Explain how can you determine the size of an allocated portion of memory?

1044


Describe the steps to insert data into a singly linked list.

1023