12th Nov 2018, 6:33 AM
Ekow Stine
Ekow Stine - avatar
9 Answers
+ 4
Here is your update code some lines missing semicolan and special invisible character too present in the code which is came when you copy the code from pc to app https://code.sololearn.com/cFCH4oW2ao6l/?ref=app
12th Nov 2018, 6:53 AM
MsJ
MsJ - avatar
+ 5
"special invisible character too present in the code which is came when you copy the code from pc to app" There was no special character other than superfluous whitespaces! 8D
12th Nov 2018, 7:14 AM
Babak
Babak - avatar
+ 4
#include <stdio.h> int main(void) { //... // \f escape sequence printf (""); // *** SEMICOLON ADDED *** [warning: zero-length gnu_printf format string] //... // \0 escape sequence printf( ); // *** SEMICOLON ADDED *** [error: too few arguments to function 'int printf(const char*, ...)'] }
12th Nov 2018, 6:53 AM
Babak
Babak - avatar
+ 2
12th Nov 2018, 7:00 AM
MsJ
MsJ - avatar
+ 1
Missing semicolom at line 29 Idk what are you trying to do with line 42 you can delete it
12th Nov 2018, 6:47 AM
Taste
Taste - avatar
+ 1
Taste line 42 is a null escape sequence can you help with that please
12th Nov 2018, 6:56 AM
Ekow Stine
Ekow Stine - avatar
+ 1
Mohit the coder (M.S.D) thank you very much but can you include a null escape sequence in line 25
12th Nov 2018, 6:57 AM
Ekow Stine
Ekow Stine - avatar
+ 1
Use '\0'
12th Nov 2018, 6:58 AM
Taste
Taste - avatar
0
thank you all very much
12th Nov 2018, 7:02 AM
Ekow Stine
Ekow Stine - avatar