CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #43

Calling a Function in an Expression

mediumFunctions

What does this code print?

📄 Code

1int square(int n) {
2 return n * n;
3}
4 
5// inside main:
6printf("%d", square(4) + 1);