Quiz on Functions
Refresh what you’ve learned about functions with this quiz.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What is printed to the screen?
void sum(int a, int b) {
int sum = a + b;
return sum;
}
int main(void) {
int x = 3, y = 4;
printf("%d", sum(x, y));
return 0;
}
A.
7
B.
A compilation error
C.
34
1 / 4