One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# -*- coding: utf-8 -*- | |
""" | |
printr is a module that allows to emulate the print_r() function of PHP by | |
printing the objects properties of a class instance and its internal | |
structure | |
Use: | |
You must get an object of a class instance and then, you can call to | |
the printr function |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
#include <cstdlib> | |
#include <iostream> | |
using namespace std; | |
void board(); | |
void player_choose(int player); | |
bool check_winner(int player); | |
void show_game(int player_winner); | |
char get_value(char mark); |