//  File: fover3.C
//
//  Function overloading illustrated

#include <iostream.h>

// Two functions named foo with different signatures

void foo (int a, int b) {
   cout << "int a = " << a << ", int b = " << b << "\n" ;
}

void foo (float a, int b) {
   cout << "float a = " << a << ", int = " << b << "\n" ;
}


main() {
   int n=1, m=2 ;
   float x=3.1, y=2.4 ;

   foo(n,m) ;
   foo(n,x) ;
   foo(x,n) ;
   foo(x,y) ;
}
