Skip to content

Instantly share code, notes, and snippets.

View atiedebee's full-sized avatar

atiedebee atiedebee

View GitHub Profile
@obstschale
obstschale / print-binary-tree.c
Created June 22, 2012 08:56
Print a binary tree
void padding ( char ch, int n ){
int i;
for ( i = 0; i < n; i++ )
putchar ( ch );
}
void structure ( struct node *root, int level ){
int i;