lesson 4 show1001 cpp
[[lesson_4_show1001_cpp]] last edit on Aug 8, 2005 4:05 AM by rescued_by_c

[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