Create a class named SomeClass with three member functions: a() which displays 42 on the console when you call it, b() which calls a(), and c() which calls b() by qualifying it.
SomeClass
a()
42
b()
c()