Microsoft Company Programming Program

#include
#include
#define MAX(x,y) (x)>(y)?(x):(y)
int main()
{
int i=10;
int j=5;
int k=0;
k=MAX(i++,++j);
printf("
%d %d %d",i,j,k);
return 0;
}


Read Solution (Total 25)

Microsoft Other Question

In an examination the number of successful students was 4 times the numbr of unsuccessful students If there were 35 less students nd the numbr of unsuccessful students were 9 more,then the ratio of their numbr would have been 2:1 . Find the total numbr of students What is the minimum no of stack of size n is needed to make a queue of size n?
1 or 2 or 3 or 4