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...

It is good programming practice to __________ your functions by writing comments that describe what they do.

a. execute b. document c. retrieve d. create e. None of these

Computer Science & Information Technology

What business function provides the basis for mandating an organization's software assurance strategy and establishing metrics to measure the success of that strategy?

A. Development B. Construction C. Validation D. Governance

Computer Science & Information Technology

In ____ mode, the concentrator acts as a hardware device enabling a secure site-to-site VPN connection.

A. network extension B. client C. server D. mixed

Computer Science & Information Technology

?The coefficient of determination, r squared, is ____.

A. ?the same as the error term in a linear regression B. ?a number that indicates how well data fits the statistical model C. a number that must be close to zero to be useful D. ?the same as the slope of the linear regression

Computer Science & Information Technology