[user02@FC4 Lesson04]$ cat -n address.cpp
1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << "Jamsa Press" << endl;
7 cout << "2975 South Rainbow, Suite I" << endl;
8 cout << "Las Vegas, NV 89102" << endl;
9
10 return 0;
11 }
[user02@FC4 Lesson04]$ g++ -o address address.cpp[user02@FC4 Lesson04]$ ./address
Jamsa Press
2975 South Rainbow, Suite I
Las Vegas, NV 89102
[user02@FC4 Lesson04]$ cat -n address2.cpp
1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << "Jamsa Press" << endl << "2975 South Rainbow, Suite I" << endl << "Las Vegas, NV 89102" << endl;
7
8 return 0;
9 }
[user02@FC4 Lesson04]$ g++ -o address2 address2.cpp[user02@FC4 Lesson04]$ ./address2
Jamsa Press
2975 South Rainbow, Suite I
Las Vegas, NV 89102
lesson_4_address.cpp, Rev. 3, Last changed on 2005-08-08 04:14, 304 page hits