Recall & Review
beginner
What is a function call in C?
A function call is when you ask a function to run its code by using its name followed by parentheses, optionally with arguments inside.
Click to reveal answer
beginner
How do you call a function named
printMessage in C?You call it by writing
printMessage(); with parentheses and a semicolon.Click to reveal answer
beginner
What happens if you call a function without the required arguments?
The program will give an error because the function expects certain inputs to work properly.
Click to reveal answer
beginner
Why do we use function calls in a program?
Function calls let us reuse code, keep programs organized, and make the program easier to read and maintain.Click to reveal answer
intermediate
What is the difference between a function declaration and a function call?
A function declaration tells the program what the function looks like. A function call actually runs the function's code.
Click to reveal answer
How do you call a function named
sum that takes two integers in C?✗ Incorrect
To call a function, just write its name with arguments inside parentheses followed by a semicolon.
What does a function call do?
✗ Incorrect
A function call runs the code inside the function.
Which of these is a correct function call in C?
✗ Incorrect
A function call must have parentheses and end with a semicolon.
What happens if you forget parentheses when calling a function?
✗ Incorrect
Parentheses are required to call a function; missing them causes a syntax error.
Why do we pass arguments in a function call?
✗ Incorrect
Arguments provide the function with the data it needs to work.
Explain in your own words what a function call is and why it is important in C programming.
Think about how you ask a friend to do something for you.
You got /4 concepts.
Describe the syntax of calling a function with and without arguments in C.
Remember the example: printMessage(); or sum(5, 10);
You got /4 concepts.