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

12 6 11

Is This Answer Correct ?    70 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does p mean in physics?

783


Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record

4960


Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?

2260


What is NULL pointer?

844


Find MAXIMUM of three distinct integers using a single C statement

802






What is the difference between #include and #include 'file' ?

789


What are formal parameters?

834


What are the advantages and disadvantages of c language?

748


What is methods in c?

812


What does %p mean?

804


What is function prototype?

769


How to implement a packet in C

2592


What is the use of parallelize in spark?

739


Write a program to find factorial of a number using recursive function.

833


Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.

855