Question: 39
(Choose 1 answer)
What is the result displayed on the screen of the following program?
A. 39
B. 69
C. 99
D. None of these
1
2
#include <stdio.h>
int main()
3日 {
4
int x, *p;
5
x=3;
6
x=6;
7
p=&x;
8
*p=9;
9
printf("%d",x);
10
printf("%d", *p);
11
}
12