summary refs log blame commit diff stats
path: root/assignments/23-basic-calculator.c
blob: 203fdf830643c252b39320628dd9851dd46b8485 (plain) (tree)






















                              
#include <stdio.h>

int menu_option(char *choice)
{
	printf(
	"Basic Calculator\n"
	"================\n"
	"Menu:\n"
	"	+  Add\n"
	"	-  Subtract\n"
	"	*  Multiply\n"
	"	/  Divide\n"
	"	q  Quit\n\n"
	);
}

int main(void)
{
	char *choice;
	menu_option(&choice);
	return 0;
}