Skip to content

Instantly share code, notes, and snippets.

Created March 31, 2014 06:59
Show Gist options
  • Save anonymous/9886759 to your computer and use it in GitHub Desktop.
Save anonymous/9886759 to your computer and use it in GitHub Desktop.
void PrintTicTacToe (char horizChar, char vertChar) {
char horizChar ='~';
char vertChar ='!';
printf("%c %c\n", vertChar, vertChar);
printf("%c %c %c %c %c\n", horizChar, horizChar, horizChar, horizChar, horizChar);
printf("%c %c\n", vertChar, vertChar);
printf("%c %c %c %c %c\n", horizChar, horizChar, horizChar, horizChar, horizChar);
printf("%c %c\n", vertChar, vertChar);
printf("%c %c %c %c %c\n", horizChar, horizChar, horizChar, horizChar, horizChar);
printf("%c %c\n", vertChar, vertChar);
return(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment