Code:
void winOrLose(int uChoice, int num)
{		
int wins = 0;
int losses = 0;
int draws = 0;			

int main()
{
	char ans;
	char choice;
	int num;
	int uChoice;
	int wins = 0;
	int losses = 0;
	int draws = 0;
These need to be defined just once at the top of the program as global. The ones defined in main are not changed by winOrLose and the ones that are changed in winOrLose are reset every time!