Greetings,
I have a question as to whether this statement can be used to call the function Calculate(). I compile it and it has errors by any chance does anyone else able to call the function or yet? Pls respond...



Code:
#include <iostream.h>

void Calculate(double a, double & b,
			   int m, int &k, int & n, char &c);

int main()
{
   	
	const double PI = 3.14159;
	const int TWO = 2;
	const char INITIAL = 'N';

	int month, day, year, p, q;
	double hours, rate, amount, u, v;
	char code, dept;

}

Calculate(13, hours, PI, 13, year, dept);