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

11 , 6, 10

Is This Answer Correct ?    54 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I change their mode to binary?

692


What is typedef struct in c?

581


Explain what are the different data types in c?

752


define string ?

662


What are all different types of pointers in c?

572






How can you pass an array to a function by value?

597


What is the process to create increment and decrement stamen in c?

583


Is c language still used?

533


What is getch () for?

672


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1196


What is the difference between functions abs() and fabs()?

643


Differentiate between a structure and a union.

758


What is a constant and types of constants in c?

598


What's the difference between constant char *p and char * constant p?

651


What is a wrapper function in c?

579