This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

urgent urgent urgent urgent urgent urgent

i use uvision,,,,when i make my project i get error 65 missing ;.
say what it mean
getp

Parents Reply Children
  • It's telling you that a semicolon - that is, the ';' character - is missing, isn't it?!

    No, 'missing semicolon' is a euphemism amongst compiler writers for 'I don't know what's wrong'.

  • No. The compiler is saying that a semicolon at the indicated location would have been acceptable. But right now, the compiler found other strange things there. Why spend time trying to figure out exactly what it found, when a developer (especially the one who did write the code) who do knows C (or C++ or whatever) should be able to figure that out within seconds?

  • No. The compiler is saying that a semicolon at the indicated location would have been acceptable. But right now, the compiler found other strange things there. Why spend time trying to figure out exactly what it found, when a developer (especially the one who did write the code) who do knows C (or C++ or whatever) should be able to figure that out within seconds?

    Sure. However, I think a much more reasonable error message would be something along the lines of "I gave up trying to translate your code at line X because I couldn't make sense of it any more, probably due to your having made a mistake on this or a preceding line".