"real" <shrinil...@...> wrote: > Thomas Hruska <thruska@> wrote: > > real wrote: > > > i am not able to understand the massage.
What I Know Is... "Massage is the practice of soft tissue manipulation with physical, functional, and in some cases psychological purposes and goals." > > > pl guide what is the error > > > > > > [Error] text.cpp:54: parse error before `if' This means that the compiler wasn't able to translate your program according to the grammar and syntax rules. In other words, either you have a typo (left of a semi- colon) or you otherwise haven't coded something correctly. > > > [Error] text.cpp:64: `N' undeclared (first use this > > > function) This means an identifier was used without being declared. > > > [Error] text.cpp:64: (Each undeclared identifier is > > > reported only once > > > [Error] text.cpp:64: for each function it appears in.) This means the compiler is saving you from potentially thousands of repeated error messages by only reporting the use of a given undeclared variable once. > > > [Error] text.cpp:64: `n' undeclared (first use this > > > function) This means another identifier was also used without being declared. [Note: C and C++ are case sensitive.] > > > > Unlike other languages (e.g. PHP), C/C++ requires you to > > declare your variables and their types before you use them. > > > > Show source code if you want more help. > > hi this massage comes so many time some times i rectifed it > my self without knowing what i am doing We don't know what you're doing either because you won't show us your code. [Did you mispell onomatopoeia on line 42?] > becouse i am using freec++ and it's highlite the error line. > > just guide me on what error these massge generated by > compiler. So you think you've fixed the transmission; you just want to know what the 'oil' light means?! I'm guessing you have more problems than you realise. ;) -- Peter
