DANVILLE
AREA
COMMUNITY COLLEGE
INTRODUCTION TO COMPUTER SCIENCE
MATH 110, Fall
2008

Section 1.1
to
1.12 Topics:
Introduction to Computers and C++ Programming;
What is a Computer?
Computer Organization;
Evolution of Operating Systems;
Personal Computing, Distributed Computing and Client/Server Computing;
Machine Languages, Assembly Languages, and High-level Languages;
History of C and C++;
C++ Standard Library;
Java and Java How to Program;
Other High-level Languages;
Structured Programming;
The Key Software Trend: Object Technology.
Examples:
FIG01_02 CPP;
FIG01_04 CPP;
FIG01_05 CPP.

How to Config BCC5.5 on your Home Computer:
(1) download;
(2) install to C:\borland\bcc55);
(3) edit the following two lines:
-I"c:\Borland\Bcc55\include"
-L"c:\Borland\Bcc55\lib"
then "save as"
file name: bcc32.cfg
(4) edit the following one line:
-L"c:\Borland\Bcc55\lib"
then "save as"
file name: ilink32.cfg
(5) copy the two files "bcc32.cfg" and "ilink32.cfg" into
c:\borland\bcc55\bin;
(6) restart your computer;
(7) copy all your hw into c:\borland\bcc55\bin
( NOT under your name like we did in the lab);
(8) then cd c:\borland\bcc55\bin;
(9) bcc32 fig01_14.cpp;
(10) fig01_14.