+ 6
//Yosharu
//you have used
char test;
//char means character and character means single letter, to make print whole line of characters you need string
string Test;
//Here is code
https://code.sololearn.com/cgt6uLIffDFe/?ref=app
+ 4
Line 6, you declared âTestâ as a char, char takes only a single character, change it to string and it should work,
hope this helps
+ 3
You have the variable "Test" defined as "char", you need "string".



