Question 43
Answer saved
Marked out of 1.00
What is value of a when the following code is executed?
1 #include<stdio.h>
2 #include<string.h>
3 #include<conio.h>
4 int main()
5日{
6
7
8
9
int a=10;
int *pa=&a;
(*pa)++;
a=a+10;
10
printf("%d",a);
11
return 0;
12 }
O a. 20
b. 21
Oc.10
O d. 11
Clear my choice