answersLogoWhite

0


Best Answer

...a function call.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: A c plus plus statement that invokes a function is known as?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How can write the name in c plus plus language without using cout statement?

I believe, you can use C-function - printf().


Which statement is not frequently used in C plus plus?

The goto statement.


What is a block in c plus plus?

Assuming you mean a code block, a group of simple statements enclosed in braces {} is regarded as a code block. In other words, a compound statement. Braces are not required around simple statements except when the statement is the body of a function (where braces are mandatory).


Operator original function in OOP C plus plus?

I'm not sure I fully understand the question. Operators and functions are not the same. However, many operators also have named alternatives implemented as functions, such that "add" is synonymous with the binary increment operator while "plus" is synonymous with the unary plus operator. However these are completely separate implementations that do the same thing such that the function implementation typically invokes the operator (with implicit inline expansion to factor away the unwanted function call). There is no way to determine the underlying function of an operator, nor the underlying operator of a function without having access to the implementation source code. Such implementation details cannot be accessed at compile time let alone runtime.


Why is curly bracket used in c plus plus?

Curly braces are used to mark the start and end of a statement, typically used when the statement body consists of two or more individual statements. However they are also used to mark the start and end of a class declaration and function bodies.

Related questions

What is the function of visual c plus plus switch condition?

The switch / case statement.


How can write the name in c plus plus language without using cout statement?

I believe, you can use C-function - printf().


Which statement best explains why y equals 15 plus 3x is a function?

If you mean: y = 15+3x then it is the function of a straight line equation.


What statement describes the function c equals 5g plus 8?

It is an equation in two variables, c and g.


What is the deffernce of the switch statement and the if statement in c plus plus?

If statement is single selection statement,whereas the switch statement is multiple selective.


Which statement is not frequently used in C plus plus?

The goto statement.


What is ctrl plus j?

In my Chrome browser Ctrl + j shows the download history. Each application can have a different behavior when the Ctrl and another key are pressed. For example in Visual Studio 2008 Ctrl + j invokes statement completion. There is also a game called Ctrl-J


What is a block in c plus plus?

Assuming you mean a code block, a group of simple statements enclosed in braces {} is regarded as a code block. In other words, a compound statement. Braces are not required around simple statements except when the statement is the body of a function (where braces are mandatory).


Operator original function in OOP C plus plus?

I'm not sure I fully understand the question. Operators and functions are not the same. However, many operators also have named alternatives implemented as functions, such that "add" is synonymous with the binary increment operator while "plus" is synonymous with the unary plus operator. However these are completely separate implementations that do the same thing such that the function implementation typically invokes the operator (with implicit inline expansion to factor away the unwanted function call). There is no way to determine the underlying function of an operator, nor the underlying operator of a function without having access to the implementation source code. Such implementation details cannot be accessed at compile time let alone runtime.


Why is curly bracket used in c plus plus?

Curly braces are used to mark the start and end of a statement, typically used when the statement body consists of two or more individual statements. However they are also used to mark the start and end of a class declaration and function bodies.


Is 2 plus 4 equals 13 a statement?

It is a statement. It is a false statement, but a statement nevertheless.


Explain the all control statement in c plus plus language and give Examples?

A control statement is any statement that alters the normal flow of execution. C++ code normally executes procedurally from the top down, however when invoking functions, execution branches off to the function code before returning to the instruction immediately after the function call. A compound statement may consist of several function calls, however even a simple statement may incur more than one function call, where the result of one function provides the argument for another. Decision-making statements like if, if-else and switch can also be used to control the flow of execution, as can the ternary operator (?:). Loops such as for, while and do-while are also examples of control statements. Other examples include goto, break, continue, return, abort and exit, often used in conjunction with decision-making statement. Functions that return void also allow execution to "fall off the end" of the function, which is essentially an implicit return statement. The global main function is the only non-void function that can "fall off the end" (implicitly returning the integral value 0).