This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Tic Tac Toe</h1> | |
<table> | |
<tr> | |
<td> | |
<div id="1">/</div> | |
</td> | |
<td> | |
<div id="2">/</div> | |
</td> | |
<td> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// main.c | |
// TareaFunciones | |
// | |
// Created by Fernando Ramirez on 17/11/14. | |
// Copyright (c) 2014 Fernando Ramirez. All rights reserved. | |
// | |
#include <stdio.h> | |
int perro(int uno, int dos); |