I'm trying to write a tictactoe program. It isnt complete, not even halfway but whenever i try to build it, it shows an error
expected primary expression before "{"token. im not able to fix it pls help
#include<iostream>
using namespace std;
int y;
char board [3][3];
void start()
{
cout<<"So you wanna play a game of tictactoe. You are X I'm o."<<endl;
cout<<" 1 2 3"<<endl;
cout<<" 4 5 6"<<endl;
cout<<" 7 8 9"<<endl;
cout<<"Type the number that corresponds to your position"<<endl;
}