This post originated from an RSS feed registered with Java Buzz
by instanceof java.
Original Post: C program for addition subtraction multiplication and division using switch case
Feed Title: Instance Of Java
Feed URL: http://feeds.feedburner.com/blogspot/TXghwE
Feed Description: Instance of Java. A place where you can learn java in simple way each and every topic covered with many points and sample programs.
Write a C program to simulate a simple calculator to perform arithmetic operations like a and division only on integers. Error message should be reported if any attempt is made to divide by zero
C program for addition subtraction multiplication and division using switch case
Write a c program to perform arithmetic operations using switch case
C program to add subtract multiply and divide two numbers using functions
Program #1: Write a c program to perform arithmetic operations using switch case
#include <stdio.h>
#include <conio.h>
int main()
{
char oper; /* oper is an operator to be selected */