Subj : Re: struct vs class in C++ To : borland.public.cpp.borlandcpp From : maeder@glue.ch (Thomas Maeder [TeamB]) Date : Fri Jun 27 2003 06:04 pm "Warren Wo" writes: > What's the difference between a struct and a class in C++? The default access to members. In struct, members are public unless you specify otherwise; in class, they are private by default. .