Skip to content

Instantly share code, notes, and snippets.

View garyburd's full-sized avatar
I am not available until further notice.

Gary Burd garyburd

I am not available until further notice.
View GitHub Profile
@garyburd
garyburd / rpn.c
Created December 8, 2011 07:47
My first C program
/* rpn.c -- reverse polish notation calculator. G.S.BURD 25-Mar-1984 */
#include <math.h>
#include <stdio.h>
#include <ctype.h>
extern char *fgets();
extern double push(), pop();
/* function codes */