answersLogoWhite

0

What are the two types of constant in c plus plus?

Updated: 8/19/2019
User Avatar

Wiki User

10y ago

Best Answer

Constant data and constant functions.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the two types of constant in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does a constant do in c plus plus?

A constant is a variable that does not change. The correct term is constant variable.


What are the two major types of programming languages in c plus plus?

Object oriented programming and structured programming.


What is a constant object in c plus plus?

A constant object is one that, once initialized, never changes value.


What does c mean in y equals mx plus c?

c is any constant value


Do I need types of design patterns in c plus plus?

No.


What are the different parameter passing methods used by c plus plus?

Pass by value, constant value, reference and constant reference. Pass by value is the default in C++ (pass by reference is the default in Java).


Two hyphae from different mating types come together forming?

plus, minus strains C for plato


What is the equilibrium constant for the following reaction C plus O CO?

C + O ==> COKeq = [CO]/[C][O]


How is c plus plus built?

C++ object oriented programming (OOP) language and supports three kinds of object types 1) Fundamental Types. 2) Derived Types. 3) Class Types.


What is a primitive type variable in c plus plus?

same the types used in C. that is int...char...float...


What is the role of plus operator between two string constant?

The plus operator between string constants allows string concatination: string a = "Hello, "; string b = "World!"; string c = a + b; The output of c would be: "Hello, World!".


Enumerate the types of selection constructs in c plus plus?

Selection constructs in C++if...elseswitch/caseconditional ternary operator (?:)