@ -148,25 +148,6 @@ void graphMode() {
}
// Programming mode
void programmingMode() {
int num1, num2, result;
char operator;
printf("Enter first integer: ");
scanf("%d", &num1);
printf("Enter operator (+, -, *, /): ");
scanf(" %c", &operator);
printf("Enter second integer: ");
scanf("%d", &num2);
// change mode
int mode(int userChoice){
@ -0,0 +1,23 @@
// programmingMode
#include <stdio.h>
#include <math.h>
#include "taschenrechner.h"
@ -1,10 +0,0 @@
// scientific.c
double scientificMode() {
return 0.0;