I am facing some error when calling a method for retrieving the data form sqlite.
error: stray '\302' in program at this line
printf("%d", sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL));
please tell me where I am wrong..
error: stray '\302'. error: stray '\240'(not reported in the question). There is a single Unicode code point U+00A0 (NO-BREAK SPACE) in the source code, UTF-8 sequence 0xC2 0xA0 (hexadecimal), 302 240 (octal). It can be searched for by regular expression\x{00A0}in any modern text editor or IDE (the notation is different in Visual Studio Code (and probably others):\u00A0(instead of\x{00A0})).