just a sample of what can be done

Dependencies:   mbed

PRN電卓プログラム

「プログラミング言語C (K&R本)」に出てくる例を元にした,RPN計算機です.

hp写真はイメージです

このプログラムは..

calc.h

Committer:
okano
Date:
2015-06-27
Revision:
5:3b9daee5f734
Parent:
3:4ef74510cc5b

File content as of revision 5:3b9daee5f734:

#define     NUMBER  '0'

int     getch( void );
void    ungetch( int );

int     getop( char [] );

void    push( double );
double  pop( void );
void    show_stack( void );