C++ help | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
- 1

C++ help

Type in the missing parameter type of the function, taking an integer value, and printing it to the screen. void myFunction( _ x) { cout << x << endl; }

24th Feb 2019, 4:33 AM
Amina Perazic
2 Respuestas
+ 5
Try void myFunction( int x) { cout << x << endl; }
24th Feb 2019, 4:43 AM
Mike Perkowski
Mike Perkowski - avatar
+ 7
Type in the interger struct name three letters "int". https://www.sololearn.com/learn/CPlusPlus/1622/
24th Feb 2019, 4:44 AM
Manual
Manual - avatar