Please find compilation error in it . | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Please find compilation error in it .

In the code a string is taken using different data types and print their outputs . https://code.sololearn.com/c1oeyte23cGo/?ref=app

30th Sep 2017, 5:57 AM
Ishan
Ishan - avatar
3 Antworten
+ 4
A few I noted in the code, you: - Declared char x[7] twice, the second is when you try to assign value of <note> into <x>. - Attempt to assign a string <note> into char array <x>, compiler refused this. - Forgot to define type of i in for loop, it should've been for(int i ... instead of for(i ... Hth, cmiiw
30th Sep 2017, 8:41 AM
Ipang
0
oh. thanks
30th Sep 2017, 6:04 AM
Ishan
Ishan - avatar
0
one more problem . Please solve .
30th Sep 2017, 7:03 AM
Ishan
Ishan - avatar