[user02@FC4 Lesson04]$ cat -n show1001.cpp
1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << "My favorite number is " << 1001 << endl;
7
8 return 0;
9 }
[user02@FC4 Lesson04]$ g++ -o show1001 show1001.cpp[user02@FC4 Lesson04]$ ./show1001
My favorite number is 1001
lesson_4_show1001.cpp, Rev. 1, Last changed on 2005-08-08 04:05, 302 page hits