What is local class in C++?

Submitted by: Administrator
Local class is define within the scope of a function and nested within a function.
E.g.
int func1()
{
class localclass1
{.....};
}
Submitted by: Administrator

Read Online C++ Static Data Job Interview Questions And Answers