functions | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
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?

22nd Jan 2017, 8:29 AM
Matthew Luvera
2 Antworten
+ 8
void some_func(); int main() { some_func(); return 0; } void some_func() { cout << "it works!" << endl; }
22nd Jan 2017, 9:44 AM
Hatsy Rei
Hatsy Rei - avatar
+ 2
Can someone help please!! Hi
4th Oct 2018, 7:46 PM
mustafe Adam Mohamoud
mustafe Adam Mohamoud - avatar