1
2
3
4
/* Linked list that emulates a hash map */
# include <stdlib.h>
# include <stdio.h>
...

C Misbehaving global pointer

by getopenid.com/ptn, October 13, 2007 17:55, 2 refactorings

I was in the middle of this...

Avatar Talk
1
2
3
4
"""
For a given number, prints Pascal's Triangle upside-down up to that line.
Prints everything alligned at first, but starts screwing up at about 13.
...

Python Pascal's Triangle

by getopenid.com/ptn, October 04, 2007 11:57, 5 refactorings

Algorithms and Data Structu...

Avatar Talk
1
2
3
4
/* Transforms a number to a string
 * e.g 1234 => "1234"
 *
...

C simplest of mallocs examples

by getopenid.com/ptn, October 02, 2007 20:24, 5 refactorings

Practising for my test tomo...

Avatar Talk