0
Error in code need help
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
+ 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
+ 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*, ...)']
}
+ 2
U just need to printf("'\0'");
https://code.sololearn.com/cFCH4oW2ao6l/?ref=app
+ 1
Missing semicolom at line 29
Idk what are you trying to do with line 42 you can delete it
+ 1
Taste line 42 is a null escape sequence
can you help with that please
+ 1
Mohit the coder (M.S.D) thank you very much
but can you include a null escape sequence in line 25
+ 1
Use '\0'
0
thank you all very much