[user02@FC4 Lesson10]$ cat -n show_emp.cpp
1 #include <iostream>
2 using namespace std;
3
4 void show_employee(int age, float salary)
5 {
6 cout << "The employee is " << age << " years old" << endl;
7 cout << "The employee makes $" << salary << endl;
8 }
9
10 int main()
11 {
12 show_employee(32, 25000.00);
13
14 return 0;
15 }
[user02@FC4 Lesson10]$ g++ -o show_emp show_emp.cpp[user02@FC4 Lesson10]$ ./show_emp
The employee is 32 years old
The employee makes $25000
[user02@FC4 Lesson10]$
lesson_10_show_emp.cpp, Rev. 1, Last changed on 2005-08-18 06:05, 295 page hits