Functions Flashcards
What is a function in C?
A named, independent section of C code that performs a specific task and optionally returns a value to the calling statement.
What are the two types of functions in C?
- Standard Library functions (built-in)
- User-defined functions (custom)
What is the syntax for creating a function in C?
[data_type] function_name([data_type param,…]){ data_type local_variable; … program_statement; … [return expression;]}
What does the function prototype declaration tell the compiler?
- Its data type
- Its name
- The argument it takes
- Who can call it
What keyword is used to return a value from a function?
return
What is the default data type of a function if omitted?
int
What does ‘call by value’ mean?
Each argument passed to a function is evaluated, and its value is passed into the function.
What is ‘call by reference’?
A method where a reference to the variable (memory address) is passed into the function instead of its value.
What are non-returning functions without parameters?
Functions declared as void that do not return a value and do not take any parameters.
What is a returning function with parameters?
A function that returns a value and accepts parameters.
Fill in the blank: The function’s _______ is a unique identifier used to call it.
name
What is the purpose of the standard library functions in C?
They are built-in functions defined in header files.
True or False: A function can be called from within another function.
True
What is the role of the return statement in a function?
It indicates that the function is to return the value of the expression back to the calling function.
What must the function prototype declaration reflect?
The data type of the return value.
What does the function ‘double_it’ do in the provided example?
It doubles the input value a specified number of times and prints the result.
What is a user-defined function?
A function created by the user to meet specific needs in the program.
What is the syntax for non-returning functions with parameters?
void function_name(data_type param1,…){ statement1; statement2; … }
What is the output of the function ‘hello_world’ that accepts an integer parameter?
It prints ‘Hello World!’ and the value of the parameter.
What is the significance of the ‘&’ symbol in a function call?
It is used to pass the address of a variable (for call by reference).
What happens when a function is called with parameters that are not the same name as the corresponding parameters?
It is valid, as it is the variable’s value that is being passed, not its name.
What is the result of the function ‘divide’ in the example?
It returns the result of dividing two integers as a float.
What is the syntax for a returning function without parameters?
data_type function_name() { statement1; statement2; return expression; }
What is the purpose of the function getInteger()?
To prompt the user for an integer value and return it.
What is the output when the user enters the integer value 4 in the getInteger() function?
The value of number is 4
What is the syntax for a returning function with parameters?
data_type function_name(data_type param1,…) { statement1; statement2; return expression; }
What does the computeAverage function do?
Calculates the average of three grades (math, science, english).
What is the output of the computeAverage function when grades are 90, 85, and 98?
Average grade is 91.00
What is the scope of function variables?
Local variables can only be accessed within the function where they are defined.
In the inner block of a function, how is a variable name treated if redefined?
The inner block variable hides the outer block variable.
What is the output of the outer block’s variable a if it is defined as 1 and inner block redefines it as 5?
outer block a: 1
True or False: A function’s local variables can be accessed by other functions.
False
What are local variables also referred to as?
Internal variables
What are global variables?
Variables declared outside of any function block, accessible by any function.
What is the output of the global variable a if it is defined as 3?
main a: 3
What is recursion in programming?
The process of calling a function within itself.
What is an advantage of using recursion over iterative statements?
The code stays simpler and shorter.
What is the output of the sumOf function when called with the value 5?
Result: 15
Fill in the blank: The process of calling a function inside the same function is called ______.
recursion
What caution should be taken when using recursion?
It can lead to a program that never terminates.