what is the meaning of anonymous array? explain with an example in c++
Answers
Answered by
32
Answer:
Anonymous class is a class which has no name given to it. C++ supports this feature. These classes cannot have a constructor but can have a destructor. These classes can neither be passed as arguments to functions nor can be used as return values from functions.
Answered by
4
anonymous classes in C++
Anonymous class is a class which has no name given to it. ... These classes can neither be passed as arguments to functions nor can be used as return values from functions.
Similar questions