Top

Discussion

What is the output of the following program?

#include < stdio>
int main()
{
int max =123, min = 10, *maxptr = &max, *minptr = &min;
int **nptr = &minptr, **mptr = &maxptr;
*maxptr = ++*mptr % **nptr;
max - = ( *minptr -**nptr && *maxptr || *minptr);
printf( “ %d %d”, ++**mptr, *minptr);
return 0;
}

 

  • A.4 10
  • B.3 11
  • C.3 10
  • D.4 11

Answer: A

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment