home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ for Dummies (3rd Edition)
/
C_FD.iso
/
C__FD.EXE
/
C++ FD
/
CHAP08
/
CHAP08_3.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-09-16
|
277 b
|
14 lines
// Chap08_3.c to build this program properly you must
// include Student.cpp in your project
#include "student.h"
Student s;
Student t;
int main()
{
s.addCourse(3, 4.0); //hereÆs an A+
t.addCourse(3, 2.5); //give this guy a C
return 0;
}