Forum: IT Professionals' Lounge Aug 26th, 2008 |
| Replies: 2 Views: 1,244 Have you included the header file where foo() function is initialized? What about creating an object to class b then call the foo() function:
b bVar;
int j = 8;
bVar.foo(j);
I think you... |