Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am healyk on github.
  • I am healyk (https://keybase.io/healyk) on keybase.
  • I have a public key whose fingerprint is BEFB 8992 75BC 7B12 1614 F7B4 F942 99C4 ACEB 5408

To claim this, I am signing this object:

@healyk
healyk / fizzbuzz.c
Created March 25, 2011 17:24
FizzBuzz problem solution.
#include <stdio.h>
/**
Solution to the FizzBuzz problem.
@author Kris Healy
*/
void main(int argc, char** argv) {
int i;
for(i = 0; i <= 100; i++) {