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

I want programmable calculator in C language but when I started programming code stopped working I would like to know what is wrong Who they occurred

int main()
{

    int num1 , num2 ;
    char Char ;
    printf("Enter first number :");
    scanf("%d",&num1);
    printf("1:(+)\n2:(-)\n3:(/)\n4:(*)\nEnter your choice :");
    scanf("%c",&Char);
    printf("Enter second number :");
    scanf("%d",&num2);
    if (Char == '+' || Char == '1') {
        printf("%d + %d = %d\n",num1,num2,num1+num2);
    }
    else if (Char == '-' || Char == '2'); {
        printf("%d - %d = %d\n",num1,num2,num1-num2);
    }
    else if (Char == '/' || Char == '3'); {
        printf("%d / %d = %d\n",num1,num2,num1/num2);
    }
    else if (Char == '*' || Char == '4'); {
        printf("%d * %d = %d\n",num1,num2,num1*num2);
    }
    else
        printf("ERROR in choice!\nExiteng...\n");

    return 0;
}
share|improve this question
5  
"stopped working" is such a wonderful diagnostic... I'm going to blame it on solar rays traveling back in time from a solar flare scheduled to erupt in 3.7 days. – Marc B Aug 21 '12 at 18:37
Welcome to StackOverflow. Unfortunately this isn't a debugging service or syntax checker. You should put your code in the debugger, locate the issue, and if you don't understand that, ask a specific question as to what you're doing wrong. – Brian Roach Aug 21 '12 at 18:39
@Essank: you should try to be more precise about the problem you are facing in your code. does it compiles? The application crash/segfault? It runs but returns wrong/unexpected results? – sergico Aug 21 '12 at 18:40

closed as not a real question by Inisheer, Marc B, Brian Roach, TJD, aquinas Aug 21 '12 at 18:42

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

else if (Char == '-' || Char == '2'); {
                                    ^

the ; is an error I presume.

share|improve this answer

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