- 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; }
2 Respuestas
+ 5
Try
void myFunction( int x)
{
cout << x << endl;
}
+ 7
Type in the interger struct name three letters "int".
https://www.sololearn.com/learn/CPlusPlus/1622/