This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<Windows.h> | |
#include<time.h> | |
#include<cstdlib> | |
#define BoardSize 5 | |
char Player1Move = 'X'; | |
char Player2Move = 'O'; | |
int p1 = 1; | |
int p2 = 2; | |
void menu(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int Sum(int *, int *); | |
float Sum1(int *,int *); | |
double Sum2(int *, int *); | |
int main() |