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