MCQOPTIONS
Saved Bookmarks
| 1. |
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» B. 3 11 | |