lesson 4 twolines cpp
[[lesson_4_twolines_cpp]] last edit on
Aug 8, 2005
4:09 AM
by rescued_by_c
[user02@FC4 Lesson04]$ cat -n twolines.cpp
[user02@FC4 Lesson04]$ ./twolines
This is line one
This is line two
1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << "This is line one\nThis is line two\n";
7
8 return 0;
9 }
[user02@FC4 Lesson04]$ g++ -o twolines twolines.cpp[user02@FC4 Lesson04]$ ./twolines
This is line one
This is line two