Thread: Stupid Error!

  1. #1
    Registered User
    Join Date
    Apr 2002
    Posts
    99

    Stupid Error!

    Ok, I haven't been doing C++ for very long. But I've just started doing a little newb program, and it's been working fine. But then I had to go and mess with it to try and improve it didn't I! And now it won't work! The error I get it very common, I'm pretty sure it is anyway. I can't see any error on the line it mentions, so it must be an earlier error.

    The Error:
    82 bank.cpp unterminated character constant

    I just can't see any errors anywhere! Please help, thx in advance.

  2. #2
    Pygmy Monkey ErionD's Avatar
    Join Date
    Feb 2002
    Posts
    408
    You have forgotten the last " or ' in a string somewhere.
    Unterminated errors can get messy and show the wrong lines all the time.

  3. #3
    Unregistered
    Guest
    line 57

    cout<< "You have exceeded the allowed ammount of tries to enter the password!

    you forgot "; at the end

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. An error is driving me nuts!
    By ulillillia in forum C Programming
    Replies: 5
    Last Post: 04-04-2009, 09:15 PM
  2. Making C DLL using MSVC++ 2005
    By chico1st in forum C Programming
    Replies: 26
    Last Post: 05-28-2008, 01:17 PM
  3. Post...
    By maxorator in forum C++ Programming
    Replies: 12
    Last Post: 10-11-2005, 08:39 AM
  4. Why wont my function exit correctly?
    By LightsOut06 in forum C Programming
    Replies: 2
    Last Post: 10-09-2005, 09:23 PM
  5. Stupid compiler errors
    By ChrisEacrett in forum C++ Programming
    Replies: 9
    Last Post: 11-30-2003, 05:44 PM