Multiple choice Which of the following is the correct syntax of declaring a class in C++? class classname {varibale declaration function declaration}; class {variables; function;}; class classname{variables function}; class classname;{ }; class classname {member variables; member function;} Reveal answer Fill a bubble to check yourself A Correct answer Explanation This is the correct syntax of declaring a class and members of the class.