Kizspy Question: 42
(Choose 1 answer)
FJOVERFLOW.COM
What will be the output of the following program?
#include <stdio.h>
int main() {
int *pa = a;
int a = 10;
(*pa)++;
a=a+10;
printf("%d", ++a);
getchar();
return 0;
A. Compiler error
B. 22
C. 21
D. 20