answersLogoWhite

0


Best Answer

#include<stdio.h>

void main()

{

int num1, num2,res;

char ch;

printf("\n Enter the 1st operand");

scanf("%d",&num1);

printf("\n Enter the operator");

scanf("%c",&ch);

printf("\n Enter the 2nd operand");

scanf("%d",&num2);

switch(ch)

{

case '+' :res=num1+num2; break;

case '-' :res=num1-num2; break;

case '*' :res=num1*num2; break;

case '/' :res=num1/num2; break;

}

printf("\n The result of %d %d %d is =%d",num1,ch,num2,res);

}

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

main()

{

int a,b,ch;

float result;

do

{

clrscr();

printf("select the operation from list");

printf("\n 1.ADDITION \n 2.SUBSTRACTION");

printf("\n 3.MULTIPLICATION \n 4.DIVISION");

printf("\n Enter your choice:");

scanf("%d",&ch);

}

while((ch>4)(ch<1));

switch(ch)

{

case1: printf("\n enter two numbers:");

scanf("%d%d",&a,&b);

result=a+b;

printf("\n result=%f",result);

break;

case2: printf("\n enter two numbers:");

scanf("%d%d",&a,&b);

result=a-b;

printf("\n result=%f",result);

break;

case3: printf("\n enter two numbers:");

scanf("%d%d",&a,&b);

result=a*b;

printf("\n result=%f",result);

break;

case4: printf("\n enter two numbers:");

scanf("%d%d",&a,&b);

result=a/b;

printf("\n result=%f",result);

break;

}

getch();

}

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

#include<stdio.h>

#include<conio.h>

void add()

{

int a=10,b=10,sum;

sum=a+b;

printf("%d",sum);

}

void main()

{

int ch;

clrscr();

printf("Enter your choice:-");

scanf("%d",&ch);

switch(ch)

{

case 1:

add();

break;

}

getch();

}

If you any query about C Language so replay me my email fofandi.nirav@gmail.com

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a C programme for arithmetic operations using menu driven?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write a arithmetic operations in c using compound assignment statement?

a = b = c


Write a programme to perform binary operations on integer argument The arguments and operators should be accepted using command line parameters?

There are many different operators, which are you referring to?


How you can write an account of prime numbers in arithmetic progressions?

There is no simple answer because there is no simple rule for primes: it is certainly NOT an arithmetic progression.


How do write searching number programme in java?

give description of that then i will send the answer


Write a program in C for arithmetic operations between two integers your program should guide users with proper message or menu on the console?

Write a program in C for showing working of different logical operator in C.Your program should guide users with proper message/menu on the console. (5 Marks)


Write a c programme to draw a rainbow?

Write a C program to Draw a RAINBOW and fill the suitable colors ...


How is event driven programming different from other programming?

write a note on event driven programming


Write a C programme to count the number of vowals present in your name?

abhimanyu


How do i Write a programme to show the fabonasi numbers?

Step 1. Learn the word "Fibonacci"...


How do you write c programme to find proper subset of a given string?

you can use strstr()


What is the Th term of the arithmetic sequence given by the explicit rule?

The answer depends on what the explicit rule is!


Define association in math terms?

Association is a property of arithmetic operations. The associative property states that the order in which two or more operations are carried out does not affect the result. Thus, (a + b) + c = a + b + c and a + (b + c) = a + b + c so you can write a + b + c without ambiguity. Note that a - (b - c) is NOT the same as (a - b) - c [unless c = 0].