Hi!
Okay, so -
To make a C++ class, we have to use the keyword class followed by the class name, and a pair of curly braces which will be our class body.
Our class body is what holds all of our constructors, functions, and data members.
So, to write a completely empty class - we would just have to simply write:
class Acc1
{
};
Note -
All classes must end with a semi colon! This is just a standard rule we follow since it was how C++ has been defined. If you were to leave the semi colon out, you would get a compiler error! =)