What does "error: stray ‘\344’ in program" means?

Ismail

I am writing a program and I get the following error message:

error: stray ‘\344’ in program

I do not know what this means. Any one could help please ?

Here is the program:

int lotto,zahl, i;
double produktlotto, produktzähl, binominalkoffizient,differenz;
i=1,lotto=0,zahl=0,produktlotto=1,  produktzahl=1;
double produktdiffierenz
itzFlubby

German umlaute like ä, ö, ü, ß are not supported in C / C++. Always and only use characters of the ASCII-Table in your code! Removing the umlaut will resolve your error!

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related