so far i already reach this line, but what make it pain in the ass is, i can't really seem to solve how to make multiple operation in one execution, i can only manage make it one operation in time, some say i have to convert the operation like "1.22*3+2.1" into string, so the computer it self take the operation and execute it by priority and also in multiple operation, but what puzzle me is how to exract the value out to determine the result of the calculation?
#include<stdio.h>
#include<stdlib.h>
int main() {
char name[]={};
puts("\n\nCalculate:" ); //prompt user to enter equation
gets( name );