Take a look at the script. It calculates telop and prints the answer. As you can see it can only calculate plus (+) now. I have never done any C coding and so I don't know how to make it calculate multiplication (X or *), minus (-) and division (: or /) aswell.
So basically I was hoping if someone could include multiplication, minus and division to the script.
#include <stdio.h>
#include <stdlib.h>
int total = 0;
void telop(char*s) {
char sum[1024];
if (s[0]==0) return;
if (s[0]=='+')
{
strncpy(sum, &s[1],1);
total += atoi(sum);
}
telop(&s[2]);
}
int main()
{
telop("+1+2+3");
printf("%d", total);
}

Recursive Descent parsing– ShPavel Feb 27 at 13:08