On Wed, 2009-02-25 at 06:17 +0000, real wrote: > > hi > while compiling text this type of error massege came. > i rechecked my text every thing was ok. > > i am not able to understand the massage. pl guide what is the error > > thanks > > Checking file dependency... > Compiling text.cpp... > [Error] text.cpp:54: parse error before `if' > [Error] text.cpp:64: `N' undeclared (first use this function) > [Error] text.cpp:64: (Each undeclared identifier is reported only once > [Error] text.cpp:64: for each function it appears in.) > [Error] text.cpp:64: `n' undeclared (first use this function) > > 5 error(s), 0 warning(s)
I'm no expert at C/C++, but in my experience 'parse error' usually translates into 'seimcolon error'. Check the code just before line 54. As for the N and n variables, are they in scope?
