1/10/00
COM1100-Winter2000-Yuhong Yin Northeastern University
9
First C++ program
n1 #include <iostream>
n2 using namespace std;
n3 int main()
n4 {
n5   cout << "Hello, World\n";
n6
n7 return 0;
n8 }
n