1.

What will be the output of the following C code?
 #include <stdio.h>
int main()
{
register int n = 110;
int *ptr = &n;
*ptr = 111;
printf("%d %d n", n, *ptr);
}

A. 110 111
B. 111 110
C. 111
D. 110
E. Compilation Error
Answer» F.


Discussion

No Comment Found

Related MCQs