Using an array in two functions

I'm trying to modify a 2d array in one function then use that data in another function. So my first function would change boardarray to something else, then my other function would test using whats in it. I can do this using these arrays as a global variable but that is not allowed for my class. Any advice would be appreciated!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
	char boardarray[10][10] = {
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' }
	};
//would change to : and then be tested in another function 
	char boardarray[10][10] = {
		{ '.','.','o','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','o','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' },
		{ '.','.','.','.','.','.','.','.','.','.' }
	};
Simply pass the array to the other function.
Topic archived. No new replies allowed.