answersLogoWhite

0


Best Answer

Of course they are used. Both stand-alone and class-member functions are used in C++.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why functions are not used in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many main functions are used in c plus plus program?

One.


Can there be friend functions in c plus plus?

Yes, there can be friend functions in C++.


Printf and scanf Operators in C and C plus plus?

No, they are functions. Operators are -> or ++or /=


What is a method in c plus plus?

In C++, methods are simply class member functions.


What is the difference between C and C plus plus prototypes?

The only difference is that C does not use nor require prototypes. C++ does because all functions and types must at least be declared, if not defined, before they can be used.


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.


How do you link a C plus plus program to C functions?

It should work without any special action.


Why does VisualStudio c plus plus not have an option to give functions It is in VS c Sharp?

Turn on the intellisense feature.


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

Constant data and constant functions.


What do you call the combination of variables and functions into a single object in C plus plus?

A singleton.


What are the pre-defined function in c plus plus?

The C++ standard library contains all the pre-defined functions.


How do you pass structures as a parameter to the functions in c plus plus?

Put their names into the parameter-list.