Thread: is this even an error

  1. #1
    Sir Mister Insane Sako Klinerr1's Avatar
    Join Date
    May 2002
    Posts
    608

    is this even an error

    line 196 error parse error before `<'

    the thign that is on line 196 is

    Code:
    cout <<"###   ###   #########  ###      ### " << endl ;
    i copied that line from hex code creator a previous program imade witch looks like this
    Code:
    cout <<"###   ###   #########  ###      ### " << endl ;
    is my compiler ****ed up or is there somthign wrong? (i copy an dpasted these lines)
    Email: [email protected] || AIM: MisterSako || MSN: [email protected]

    -the shroom has spoken

  2. #2
    Registered User
    Join Date
    Apr 2002
    Posts
    1,571
    That line looks fine. Is there any other wierd lines around it? Did you try commenting out that line to see if the error goes away?
    "...the results are undefined, and we all know what "undefined" means: it means it works during development, it works during testing, and it blows up in your most important customers' faces." --Scott Meyers

  3. #3
    Sir Mister Insane Sako Klinerr1's Avatar
    Join Date
    May 2002
    Posts
    608
    Code:
                                                     /*Start of Hex Code Finder*/
    hexcodefinder:system("cls")
    cout <<"###   ###   #########  ###      ### " << endl ;
    cout <<"###   ###   #########   ###    ###  " << endl ;
    cout <<"###   ###   ###          ###  ###   " << endl ;
    cout <<"#########   #########     ######    " << endl ;
    those are surrounding lines
    Email: [email protected] || AIM: MisterSako || MSN: [email protected]

    -the shroom has spoken

  4. #4
    Registered User
    Join Date
    Apr 2002
    Posts
    1,571
    What's going on with hexcodefinder:system("cls")

    Why not just use

    system("cls");

    Also there is not ; after your statement.

    Maybe send more of the file? I'm not quite sure what is going wrong.

  5. #5
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    >hexcodefinder:system("cls")

    Shouldn't this be:

    hexcodefinder::system("cls");

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Getting an error with OpenGL: collect2: ld returned 1 exit status
    By Lorgon Jortle in forum C++ Programming
    Replies: 6
    Last Post: 05-08-2009, 08:18 PM
  2. An error is driving me nuts!
    By ulillillia in forum C Programming
    Replies: 5
    Last Post: 04-04-2009, 09:15 PM
  3. Making C DLL using MSVC++ 2005
    By chico1st in forum C Programming
    Replies: 26
    Last Post: 05-28-2008, 01:17 PM
  4. Connecting to a mysql server and querying problem
    By Diod in forum C++ Programming
    Replies: 8
    Last Post: 02-13-2006, 10:33 AM
  5. Couple C questions :)
    By Divx in forum C Programming
    Replies: 5
    Last Post: 01-28-2003, 01:10 AM