May 2003
Intermediate to advanced
808 pages
32h 24m
English
struct keyword — Declares class with public members
class-key := structThe struct keyword declares a
class that has public access by default. Inheritance is also public by
default. See class for syntax
rules.
structpoint { int x, y; };structpoint p1; // "struct" is redundant here. point p2;
class, union, Chapter
6