Question: 1. The function _______ is the part of the function that specifies the return type, function name, and parameter list. Answer: 2. If you want

1. The function _______ is the part of the function that specifies the return type, function name, and parameter list.

Answer:

2. If you want a C-language function not to return a value, you begin its prototype with the keyword _______.

Answer:

3. Values that are passed (in parentheses) from a calling function to a called function are known as _______.

Answer:

4. If a C-language function declares a local variable with the same name as a global variable, only the _______ variable is visible inside the function.

local orglobal ?

5. In a void function, even though there is no return value, you can use the _______ keyword to end the function immediately.

Answer:

6. In a function with return type int, the "return" keyword can be followed by which of these? (choose all that apply)

  • A mathematical expression that resolves to a value of type int
  • An integer-type variable
  • The literal value 3.0
  • The literal value -1

7. When you define two functions with the same name but different parameter lists, this is called...

  • overwriting
  • overbite
  • overriding
  • overloading

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 Programming Questions!