what is wrong with the assignment: ptr_num = 3 ?

Given the code:

```
int number, *ptr_num = &number;
```

A. You can’t assign an int to a pointer.
B. ptr_num is not defined.
C. The number variable must be assigned an address.
D. Nothing is wrong.


A. You can’t assign an int to a pointer.

Computer Science & Information Technology

You might also like to view...

Which of the following is a double-ended queue?

a. two-headed stack b. two-tailed vector c. circular array d. deque e. None of these

Computer Science & Information Technology

It is often more efficient to make changes to an object with the ____ because you simply can click and drag an object on the stage rather than switch panels and enter a variety of values.

a. Properties panel b. Edit Tool c. Transform panel d. Free Transform Tool

Computer Science & Information Technology

To obtain the current minute, use _________.

a. System.currentTimeMillis() % 3600 b. System.currentTimeMillis() % 60 c. System.currentTimeMillis() / 1000 % 60 d. System.currentTimeMillis() / 1000 / 60 % 60 e. System.currentTimeMillis() / 1000 / 60 / 60 % 24

Computer Science & Information Technology

The processor market for desktop and laptop computers is dominated by ________

A) Intel B) Microsoft C) Apple D) IBM

Computer Science & Information Technology