Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am annaopss on github.
  • I am annaopss (https://keybase.io/annaopss) on keybase.
  • I have a public key ASBdWNAjU2Wx5_aEBI5Y3_R5ynncCXOVCyn7Pw55eqCHJAo

To claim this, I am signing this object:

#include <stdio.h>
#define MAX 100
int main (int argc, char* argv[])
{
int i;
for (i=1; i<=MAX; i++) {
if (i%3 == 0 && i%5==0)
printf ("FizzBuzz\n");
else
if (i%3 == 0)
#include <stdio.h>
#include <string.h>
/* This function looks for winning moves of a player */
void findThreat (int, int [][2], int [][3]);
int main (int argc, char* argv[])
{
int grid[3][3], nextgrid[3][3], i, j, col, row, positionO, Threats[2][2];
int Forks[2][2], forknum, win, shouldgoon;