0
functions
Fill in the blanks to print "it works!" on the screen, type in the function prototype before its call. void (); int main() { some_func(); return 0; } some_func() { cout << "it works!" << endl; } Im lost on this one. Can someone help please?
2 Answers
+ 8
void some_func();
int main()
{
some_func();
return 0;
}
void some_func() {
cout << "it works!" << endl;
}
+ 2
Can someone help please!! Hi