Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~401 People Reached
Favorite Forums
Favorite Tags
c x 3
Member Avatar for NewbieinC

[CODE]#include <stdio.h> #include <stdlib.h> #include <time.h> main(){ char cChoice; printf("****************************************\n\n"); printf(" FLIP!-TAC-TOE 3D \n\n"); printf(" Enter S to start the game or \n\n"); printf(" E to exit! \n\n"); printf(" Choice: ", cChoice); scanf("%c", &cChoice); if(cChoice == 'S') function1 (); else exit(EXIT_SUCCESS); printf("\n****************************************\n\n"); system("CLS"); void function1(){ char cMarker1; int i = …

Member Avatar for Adak
0
179
Member Avatar for NewbieinC

[CODE]************** TURN 1 **************** | | | | | | a | b | c j | k | l r | s | t __ |___| __ __ |___| __ __ |___| __ | | | | | | d | e | f m | W | n …

Member Avatar for sfuo
0
96
Member Avatar for NewbieinC

[CODE]main(){ char cChoice, cMarker1; printf("****************************************\n\n"); printf(" FLIP!-TAC-TOE 3D \n\n"); printf(" Enter S to start the game or \n\n"); printf(" E to exit! \n\n"); printf(" Choice: \n\n ", cChoice); printf("****************************************\n\n"); scanf("%c", &cChoice); system("CLS");[/CODE] this is the task:Display a simple introduction screen at the beginning of the game. After making a choice …

Member Avatar for Adak
0
126