home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ for Dummies (3rd Edition)
/
C_FD.iso
/
CHAP12
/
CHAP12_2.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-15
|
226b
|
11 lines
// Chap12_2.cpp
#include "student.h"
//the following invokes each constructor in turn
int main()
{
Student noName;
Student freshMan("Smel E. Fish");
Student xfer("Upp R. Classman", 80, 2.1);
return 0;
}