0
What is wrong with this code?
#include <iostream> using namespace std; int main() { cout << "C /n"; cout << "+ /n"; cout << "+"; return 0; }
4 Answers
+ 6
Kookie Kracie ,
(if your question is related with a code coach exercise in a tutorial, we need to modify the code)
additionally to the hints you already got, you have to remove all spaces inside the strings.
happy coding!
+ 3
Use \n instead of /n
+ 2
Nothing.
But what you trying? Printing in separate line or adding line break?
Then you need \n instead of /n
0
Thank you