8.
|
Which one of the following statements about using const is false?
|
|
A.
|
A const variable cannot be used on the left side of an assignment. |
|
B.
|
When used alone in a declaration, the base type of a const variable is implicitly int .
|
|
C.
|
You cannot declare a constant pointer whose pointed-at value is constant.
|
|
D.
|
A const value must be initialized when it is declared.
|