Q:

The close curly that ends the class body must be followed by a semicolon. The semicolon is needed because we can define variables after the class body

0

The close curly that ends the class body must be followed by a semicolon. The semicolon is needed because we can define variables after the class body

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

struct Sales_data { /* ... */ } accum, trans, *salesptr;
// equivalent, but better way to define these objects
struct Sales_data { /* ... */ };
Sales_data accum, trans, *salesptr;

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now