Thread: Help i cant find whats wrong with my code

  1. #1
    Registered User
    Join Date
    Nov 2001
    Posts
    16

    Help i cant find whats wrong with my code

    here it is

    Code:
    void overloadMeessage()
    {
         char OLstring[256];
         cout<<"OverLoad:"<<endl;
         cout<<"\t OverLoad Message"<<endl;
         cout<<"\t\t Enter Message to OverLoad: "<<endl;
         cin.getline(OLstring, 256, '\n');
    
         while(1 == 1)
         {
         cout<<OLstring<<endl;
         }
    
    }
    the compiler says:
    2 parse error before `{'
    7 main.cpp `OLstring' undeclared (first use this function)
    • 0927
    • a.k.a 0 9 two 7

  2. #2
    Registered User
    Join Date
    Dec 2001
    Posts
    60

    Error elsewhere

    This function couldn't cause the errors, unless
    you've forgotten to declare it.
    (Also the loop will never end (1==1) is always true,
    Try to implement a condition for a break statement)

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. What is wrong with my code? My first program......
    By coreyt1111 in forum C++ Programming
    Replies: 11
    Last Post: 11-14-2006, 02:03 PM
  2. What's wrong with this code?
    By Finchie_88 in forum Networking/Device Communication
    Replies: 10
    Last Post: 05-27-2005, 09:46 AM
  3. What's wrong with my Win32 Wrapper code?
    By miica in forum Windows Programming
    Replies: 9
    Last Post: 02-22-2005, 08:55 PM
  4. True ASM vs. Fake ASM ????
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 04-02-2003, 04:28 AM
  5. what's wrong with this qsort code?
    By Sargnagel in forum C Programming
    Replies: 2
    Last Post: 01-12-2003, 06:58 AM