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

10 5 0

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you write a program which produces its own source code as output?

1059


Write a program to print fibonacci series without using recursion?

1065


What is the use of a conditional inclusion statement in C?

1008


What is c language in simple words?

1011


What is the Purpose of 'extern' keyword in a function declaration?

1032


What is operator promotion?

1011


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

1196


Write a program to swap two numbers without using third variable in c?

1069


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

1022


How do you list a file’s date and time?

1020


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

1271


List out few of the applications that make use of Multilinked Structures?

2108


write a c program to calculate sum of digits till it reduces to a single digit using recursion

3244


Why does the call char scanf work?

1153


What is the significance of an algorithm to C programming?

996