C++ help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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 Answers
+ 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