[user02@FC4 Lesson04]$ cat -n floating.cpp
1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << 0.12345 << endl;
7
8 return 0;
9 }
[user02@FC4 Lesson04]$ g++ -o floating floating.cpp[user02@FC4 Lesson04]$ ./floating
0.12345
lesson_4_floating.cpp, Rev. 1, Last changed on 2005-08-08 04:03, 334 page hits