How To Divide In Dev C++

Take a simple arithmetic problem: what's left over when you divide 11 by 3? Theanswer is easy to compute: divide 11 by 3 and take the remainder: 2. But howwould you compute this in a programming language like C or C++? It's not hardto come up with a formula, but the language provides a built-in mechanism, the

Dec 07, 2017 Basic C Tutorial using Dev-c of How to Add, Subtract, Multiply and Divide 2 int Numbers. This program works like a simple calculator. Video Link: https:/. C programming, exercises, solution: Write a program in C to split string by space into words.

modulus operator

Divide By Zero In C

('%How To Divide In Dev C++'), that computes the remainder that results fromperforming integer division.
The modulus operator is useful in a variety of circumstances. It is commonlyused to take a randomly generated number and reduce that number to a randomnumber on a smaller range, and it can also quickly tell you if one number is afactor of another.
If you wanted to know if a number was odd or even, you could use modulus toquickly tell you by asking for the remainder of the number when divided by 2.The key line is the one that performs the modulus operation: 'num % 2 0'.A number is even if and only if it is divisible by two, and a number isdivisible by another only if there is no remainder.
How could you use modulus to write a program that checks if a number is prime?
Advertising | Privacy policy |Copyright © 2019 Cprogramming.com | Contact | About

C program to perform basic arithmetic operations which are addition, subtraction, multiplication, and division of two numbers. Numbers are assumed to be integers and will be entered by a user. In C language when we divide two integers we get an integer as a result, for example, 5/2 evaluates to 2. As a general rule integer/integer = integer and float/integer = float or integer/float = float. So we convert denominator to float in our program, you may also write float in the numerator. This explicit conversion is known as typecasting.

C programming code

#include <stdio.h>

int main()
{
int first, second, add, subtract, multiply;
float divide;
printf('Enter two integersn');
scanf('%d%d',&first,&second);
add = first + second;
subtract = first - second;
multiply = first * second;
divide = first /(float)second;//typecasting

printf('Sum = %dn', add);
printf('Difference = %dn', subtract);
printf('Multiplication = %dn', multiply);
printf('Division = %.2fn', divide);
return0;
}

How To Divide Numbers

Output of program:

How To Divide In Dev C 2017

Download Arithmetic operations program.