43.3k views
2 votes
Consider the following function definition. Double funcTest (string name, char u, int num, double y) { } Which of the following is the correct function prototype for the function funcTest? a) double funcTest (string, char, int, double); b) int funcTest (string n, char ch, int x, double t); c) double funcTest (name, u, num, y); d) void funcTest (string, char, int, double);

1 Answer

6 votes

Answer:

The answer is "Option A"

Step-by-step explanation:

The prototype of the method is also known as the method declaration, in which it defines the name, arguments and return type of the method. It can't define the method body. It offers to the compiler, to inform the function, which can be used in this program later, and wrong option can be described as follows:

  • Option b and Option d both were wrong because, Its uses return type int and void, which is not used in method its return type.
  • In option c, It is wrong because, in method prototype, we use datatypes in parameters, not names.

User Vitalie
by
8.2k points