i'm stragling with thus project i'm busy with of creating this game( NAUGHTS & CROSSES) using C language not C++. i need help and advise on how to do it using c language.
Tic-tac-toe could hardly use any c++ features. All you need is an array of 9 chars, a function asking where does the user want his X or O and a function to check if someone won (and a more complicated version of the same function if you want to have an AI).
What kind of problems are you having?