100k views
1 vote
This is a statement that causes a function to execute.

A) for loop
B) do-while loop
C) function prototype
D) function call
E) None of these

User Socket
by
7.3k points

1 Answer

6 votes

Final answer:

A statement that causes a function to execute is called a function call. It is used to run the code within a function's body. Options like for loop and do-while loop do not execute a function but repeat code blocks.

Step-by-step explanation:

The statement that causes a function to execute is known as a function call. A function call is used when you want to execute the code defined within a function's body. For example, in a programming language like C, if you have a function named calculateSum, you would call it using calculateSum() to run the operations that it contains.

The other options provided, such as for loop and do-while loop, are control flow statements that provide a way of repeating execution of certain code blocks but do not themselves execute a function. A function prototype is a declaration of a function that specifies the function's name, return type, and parameters, but it is not a call.

User Iozee
by
7.4k points