You have already completed these exercises!
Do you want to take them again?
You completed the C Function Parameters Exercises from W3Schools.com
Share on:
What will the following code output?void myFunction(char name[]) { printf("Hello %s\n", name);}int main() { myFunction("Alice"); return 0;}
void myFunction(char name[]) { printf("Hello %s\n", name);}int main() { myFunction("Alice"); return 0;}