So what i am trying to do is call a method with in a method.
Example:
Is this posible or do i have to do something else????
I tried it in my code and got 3 error messages.
1. error C3861: 'findRelevant': identifier not found
2. error C2365: 'findRelevant' : redefinition; previous definition was 'formerly unknown identifier
3. error C3861: 'findRelevant': identifier not found
Please Help
Example:
Code:
void printBooks()
{
....
findRelavant()
}
void findRelavant()
{
....
}
I tried it in my code and got 3 error messages.
1. error C3861: 'findRelevant': identifier not found
2. error C2365: 'findRelevant' : redefinition; previous definition was 'formerly unknown identifier
3. error C3861: 'findRelevant': identifier not found
Please Help
Comment