Question: Consider the following function definition: int func ( int x , double y , char u , string name ) { / / function body

Consider the following function definition:
int func(int x, double y, char u, string name)
{
// function body
}
Which of the following are correct function prototypes of the function func?
int func(x, y, u, name);
int func(int s, double k, char ch, string name);
int func(int, double, char, string);
func(int, double, char, string);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!