#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 / sshireesha

12 6 11

Is This Answer Correct ?    30 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the newline escape sequence?

583


What is the use of typedef in c?

580


Explain what is the difference between a free-standing and a hosted environment?

632


What is atoi and atof in c?

614


Do character constants represent numerical values?

838






What are data structures in c and how to use them?

671


What is build process in c?

643


What header files do I need in order to define the standard library functions I use?

535


Where is c used?

644


When can a far pointer be used?

586


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1652


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

2576


How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?

1586


What is extern keyword in c?

639


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

764