Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
Answer Posted / guest
void main()
{
int n,a,b;
sanf("%d%d",&a,&b);
printf("select one of these");
printf("1.addition
2.subtraction
3.multiplication
4.division");
scanf("%d",&n);
if(n==1)
{
printf("%d",a+b);
}
else if(n==2)
{
printf("%d",a-b);
}
else if(n==3)
{
printf("%d",a*b);
}
else if(n==4)
{
printf("%d",a/b);
}
else
{
printf("nothing to print");
}
}
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
how many key words availabel in c a) 28 b) 31 c) 32
Explain how do you determine the length of a string value that was stored in a variable?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is %d called in c?
How many types of errors are there in c language? Explain
What are the types of pointers?
What is the translation phases used in c language?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Why #include is used in c language?
Differentiate between static and dynamic modeling.
What is null in c?
What are the advantages of external class?
what is the format specifier for printing a pointer value?
What is #error and use of it?
Is it fine to write void main () or main () in c?