1/10/00
COM1100-Winter2000-Yuhong Yin Northeastern University
27
Summary of today’s lecture
nC++ was developed in 1985 at Bell Labs by Bjarne Stroustrup
nC++ is a better C.
nheader files
n using namespace std;
n int main()
n {
n statements;
n return 0;
n }
ncout << expression1 << expression2 << … << expressionN;
ncin >> variable1 >> variable2 >>…>> variableN;
n
n
n
n