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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started