#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

Is there a way to switch on strings?

610


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2215


What is this infamous null pointer, anyway?

607


What does 3 mean in texting?

608


What is structure of c program?

599






What is the usage of the pointer in c?

603


Explain the red-black trees?

602


Write a code on reverse string and its complexity.

603


What is omp_num_threads?

576


What is time complexity c?

562


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

576


Explain what is the concatenation operator?

621


What does the file stdio.h contain?

597


What is ## preprocessor operator in c?

609


the question is that what you have been doing all these periods (one year gap)

1614