What is displayed by the program fragment below?
```
int a = 3, b = 9;
int *pa, *pb, *pc;
pa = &a;
pb = &pb;
pc = pa;
pa = pb;
pb = pc;
printf(ā%4d %4d %4d %4d %4d\nā, a, b, *pa, *pb, *pc);
```
3 9 9 3 3
Computer Science & Information Technology
You might also like to view...
In the context of the IEEE 802.1d specification of the spanning tree protocol, define the following terms:
What will be an ideal response?
Computer Science & Information Technology
The slide master and related slide layouts control the formatting on the slides in a presentation based on the applied theme.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology