Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
}
share|improve this question
2  
this is not a script. it is source code for a compiled language. – speeder Feb 27 at 13:00
Is this homework? Please try to investigate by yourself and ask a precise question on the difficulties you encounter. – greydet Feb 27 at 13:03
HINT:A small calculator is a lot easier to program if it takes Polish notation input. – QuentinUK Feb 27 at 13:07
there is no easy way to add operation with different prorities - google for Recursive Descent parsing – ShPavel Feb 27 at 13:08
Why do you all complain. Everybody started with nearly-no knowledge... – Rinke Doeser Feb 27 at 13:20

closed as not a real question by casperOne Feb 28 at 14:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 2 down vote accepted

If you change the "+" in "-" then it calculates, you could also use this with "/" or "*"

void telop (char*s){
    char som[1024];
    if(s[0]==0) return;

    if(s[0]=='+')
    {   strncpy (som, &s[1],1);
        total += atoi(som); }
    if(s[0]=='-')
    {   strncpy (som, &s[1],1);
        total -= atoi(som); }
    if(s[0]=='/')
    {   strncpy (som, &s[1],1);
        total /= atoi(som); }
    if(s[0]=='*')
    {   strncpy (som, &s[1],1);
        total *= atoi(som); }



    telop(&s[2]);
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.