✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class A
{
void F () {};
public:int Func (int x) {F ();}
}; 2.class A
{
char * name;public:
void Func () {printf ( "Hello");return name;} }; (C++)