answersLogoWhite

0

How is c plus plus built?

Updated: 11/17/2022
User Avatar

Wiki User

9y ago

Best Answer

C++ object oriented programming (OOP) language and supports three kinds of object types

1) Fundamental Types.

2) Derived Types.

3) Class Types.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How is c plus plus built?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

When do we use int in c plus plus programming?

'int' is one of the built-in data-types, it is meant to hold integer values.


Basic structure of c n c plus plus?

The basic structure of a C or C++ program is built around types. A structure is a type. A function is a type. A class is a type. All of these types can be built from primitive (built-in) types and can be used to create ever-more complex types.


What is a delegate in C plus plus?

C++ does not have built-in support for delegates, however it is possible to simulate delegation through the use of template hacks. See related links below for more information.


Tell more about gotoxy statemant and more of its use in c and c plus plus?

gotoXY function is defined in conio.h, it places the cursor to the given position. If you have any question about it, use the built-in help.


Why c plus plus is not fully oop based?

C++ evolved from C and therefore retains the concept of primitive variables inherited from C, including int and char. In 100% OOP languages such as Java, these primitives would be implemented as objects. But in C++, they are primitive in nature. That is, they have no built-in methods such as .ToString() associated with them.

Related questions

Integer in c and c plus plus?

One of the built-in datatypes.


What is int86 function in c plus plus?

It is DOS-specific function in TurboC to call an interrupt. See the built-in help.


When do we use int in c plus plus programming?

'int' is one of the built-in data-types, it is meant to hold integer values.


Why is C plus plus is not a true OOP language?

C++ is based on C. C was not object oriented, therefore the language was not made to be object oriented and moreover C++ is not a "true OOP language". It is simply a non-OOP language with OOP functionality built onto it.


Basic structure of c n c plus plus?

The basic structure of a C or C++ program is built around types. A structure is a type. A function is a type. A class is a type. All of these types can be built from primitive (built-in) types and can be used to create ever-more complex types.


What is a delegate in C plus plus?

C++ does not have built-in support for delegates, however it is possible to simulate delegation through the use of template hacks. See related links below for more information.


What are the in-built function in c plus plus?

C++ built-in functions are those functions that are provided for you as part of the language itself, and includes all of the C standard library functions (all of which were inherited from C) and is expanded upon by the C++ standard template library. C++ implementors may provide additional functions that are platform-specific, however these are not considered built-in functions becuase C++ is a cross-platform language. These are best described as 3rd party functions. The functions you yourself write are known as user-defined functions.


Tell more about gotoxy statemant and more of its use in c and c plus plus?

gotoXY function is defined in conio.h, it places the cursor to the given position. If you have any question about it, use the built-in help.


What is b plus b plus b plus c plus c plus c plus c?

b+b+b+c+c+c+c =3b+4c


What is c plus c plus 2c plus c plus c equal?

c + c + 2c + c + c = 6c


B plus b plus b plus c plus c plus c plus c equals?

b + b + b + c + c + c + c = 3b + 4c


Why c plus plus is not fully oop based?

C++ evolved from C and therefore retains the concept of primitive variables inherited from C, including int and char. In 100% OOP languages such as Java, these primitives would be implemented as objects. But in C++, they are primitive in nature. That is, they have no built-in methods such as .ToString() associated with them.