Computer Science - Object Oriented Programming Using C++ - Discussion
|
|
|
|
Read more:"I never see what has been done; I only see what remains to be done."
- Marie Curie
|
| 8. |
Which of the following are valid characters for a numeric literal constant? |
| [A]. |
a comma | | [B]. |
a dollar sign ($) | | [C]. |
a percent sign (%) | | [D]. |
a space | | [E]. |
None of the above |
Answer: Option E
Explanation:
No answer description available for this question.
|
|
Smita said:
(Thu, Jul 28, 2011 02:25:38 PM)
|
|
| |
| What are a valid characters for a numeric literal constants? |
|
Priti said:
(Tue, Aug 9, 2011 07:09:35 AM)
|
|
| |
| Let me know the valid characters for a numeric literal constant. |
|
Manojit said:
(Fri, Feb 10, 2012 05:40:55 PM)
|
|
| |
| Literal constants are invariants whose values are implied by their representations. |
|
Priya said:
(Thu, Mar 8, 2012 10:32:22 AM)
|
|
| |
We have to declare the numeric as a constant unsing the keyword "const" in the header file.
Eg: const 7 |
|
Pravin Chaudhari.. said:
(Mon, Apr 9, 2012 11:01:10 PM)
|
|
| |
| No need to declare in header and all you can use const while declaring variable with const keyword. |
|
Anup Kumar said:
(Tue, Apr 24, 2012 03:36:25 AM)
|
|
| |
| We have to declare the numeric constant using the Keword "const" . That means you can't change that value in that program. |
|
|