Skip to content

Instantly share code, notes, and snippets.

@dan49075
dan49075 / Simple Calculator
Created May 25, 2015 19:23
Simple calculator made in C
//Calculator program
#include <stdio.h>
#include <stdlib.h>
int main()
{
int menu; //Variable for the number the user inputs
float num1, num2, result; //Float variables for the user input and output, used floats in case the user enters e.g. 14.7
printf("Enter a number from the list below\n\n");