#include extern float Square(float); // Function declaration // Try lying to the compiler !!! int main(int param1, char *param2) { int a = 4; short b; b = Square(a); cout << " a = " << a << ", b = " << b << "\n"; }