Link to home
Start Free TrialLog in
Avatar of buckeyes33
buckeyes33

asked on

what does this error mean

when I complied my programm i got this error three different times

unterminated character constant

i can not determine what it is.
ASKER CERTIFIED SOLUTION
Avatar of Kent Olsen
Kent Olsen
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of buckeyes33
buckeyes33

ASKER

i am not using any chararcters in my program.
Try doing a search for the single quote character  '

Mine is near my enter key.  It is possible you have hit it on occasion.
ok a character did not mater.  Just one thing.  Why did that not show up as a parse error?
You may not be *intending* to use any characters. However, the error message indicates that the compiler has come across a line that has a quote character in it. Since it doesn't find a second one, the compiler is constrained to assume that it is missing.

Quotes can sometimes be hard to see. If the compiler tells you what line the problem is on, it may be simpler to delete it and retype it.
I'm not quite sure what you mean by "parse error". Isn't "unterminated character constant" a parse error?