] > Declarations

4.7 Declarations

 #include <iostream>
 using namespace std;
 
 void f( int );
 
 int main()
 {
   f( 5 );   f( 66 );
   return 0;
 }
 
 void f( int x )
 {
    cout << x << endl;
 }
-_-_-