Menu
×
×
Correct!
Exercise:Insert the missing part to print the number 8 in
int myFunction(int x) {
@(6) 5 + x;
}
int main() {
printf("%d", myFunction(3));
return 0;
}
int myFunction(int x) {
return 5 + x;
}
int main() {
printf("%d", myFunction(3));
return 0;
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 46 exercises.
Are you sure you want to continue?