Saturday, July 6, 2013

Tic Tac Toe

/*
############ Project Name : TIC TAC TOE

############ CODED BY

############ > Faysal Ishtiaq Rabby
############ ~ Student ID : 120909
############ Khulna University, Bangladesh.

*/

#include "stdafx.h"
#include<stdlib.h>

int main()

/* Declaring Variables */
char gamestart;

char pos_input[]={'1','2','3','4','5','6','7','8','9'};

int gameloop, option_position,input,flag=0,player_number,rand_int,i;

/* Variable Declaration Finished*/

printf("Press \"ENTER\" to start.");

scanf("%c",&gamestart);

while(gamestart == '\n')
{
/* Re-defining Variables... - Full Post

No comments:

Post a Comment