Program to use floating point arithmetic operators in C language
#include <stdio.h>
int main()
{
float a = 12.4, b = 3.8;
printf("Sum=%.2f\n", a + b);
printf("Difference=%.2f\n", a - b);
printf("Proudct=%.2f\n", a * b);
printf("a/b=%.2f\n", a / b);
return 0;
}
Output
Sum=16.20
Difference=8.60
Proudct=47.12
a/b=3.26
Steps / Description
Declare variable float a and b
Initialize in float variable a = 10.4, b = 5.8
printf inbuild function to display sum of variable a > and b with decimal place holder %f
prinf inbuild function to display difference of variable a and b with decimal place holder %f
printf inbuild function to display product of variable a and b with decimal place holder %f
printf inbuild function to display a/ba and b with decimal place holder%f
#include <stdio.h>
int main()
{
int a = 17, b = 4;
printf("sum=%d\n", a + b);
printf("defference=%d\n", a - b);
printf("proudct=%d\n", a * b);
printf("quotient=%d\n", a / b);
printf("remainder=%d\n", a % b);
return 0;
}
Program to use ( + ) Addition Operator JavaScript Language
let a = 5;
let b = 3;
let c;
c = a + b;
console.log('c = ', c);
Output
c = 8
Steps Description
Declare three variables a, b and c
Initialize both variables with value of 5 and 3 respectively a=5, b=3
Assign c variable with Assignment Operators (=) with the sum/Addition value of variables a and b
a, b variables की value को (+) Addition Operators ki सहयता से a+b numbers को sum/Addition किया गया हैं
console.log inbuilt function की मदद्द से c variable की value को display किया गया हैं
Program to use ( - ) Subtraction Operator JavaScript Language
let a = 5;
let b = 3;
let c;
c = a - b;
console.log('c = ', c);
Output
c = 2
Steps Description
Declare three variables a, b and c
Initialize both variables with value of 5 and 3 respectively a=5, b=3
Assign c variable with Assignment Operators (=) with the subtraction/minus value of variables a and b
a, b variables की value को (-) Subtraction Operators ki सहयता से a-b numbers को subtraction/minus किया गया हैं
console.log inbuilt function की मदद्द से c variable की value को display किया गया हैं
Program to use ( * ) Multiplication Operator JavaScript Language
let a = 5;
let b = 3;
let c;
c = a * b;
console.log('c = ', c);
Output
c = 15
Steps Description
Declare three variables a, b and c
Initialize both variables with value of 5 and 3 respectively a=5, b=3
Assign c variable with Assignment Operators (=) with the multiplie/गुड़ा value of variables a and b
a, b variables की value को (*) Multiplication Operators ki सहयता से a*b numbers को multiplie/गुड़ा किया गया हैं
console.log inbuilt function की मदद्द से c variable की value को display किया गया हैं
Program to use ( / )Division Operator JavaScript Language
let a = 15;
let b = 3;
let c;
c = a / b;
console.log('c = ', c);
Output
c = 5
Steps Description
Declare three variables a, b and c
Initialize both variables with value of 15 and 3 respectively a=15, b=3
Assign c variable with Assignment Operators (=) with the divides/भाग value of variables a and b
a, b variables की value को (/) Division Operators ki सहयता से a/b numbers को divides/भाग किया गया हैं
console.log inbuilt function की मदद्द से c variable की value को display किया गया हैं
Program to use ( % ) Modulus/Remainder Operator JavaScript Language
let a = 10;
let b = 3;
let c;
c = a % b;
console.log('c = ', c);
Output
c = 1
Steps Description
Declare three variables a, b and c
Initialize both variables with value of 10 and 3 respectively a=10, b=3
Assign c variable with Assignment Operators (=) with the modulus/remainder value of variables a and b
a, b variables की value को (%) Modulus/Remainder Operators ki सहयता से a%b numbers को modulus/remainder किया गया हैं
console.log inbuilt function की मदद्द से c variable की value को display किया गया हैं
Program to use ( ++ ) Increment Operators JavaScript Language
let b = 3;
console.log('b = ',b)
console.log('++b = ',++b)
console.log('b++ = ',b++)
Output
b = 3 , ++b = 4 , b++ = 4
Steps Description
Declare variable b
Initialize variable with value of 3 respectively b=3
console.log inbuilt function की मदद्द से b variable की value को display किया गया हैं
console.log inbuilt function की मदद्द से (++) Increment Operators की सहयता से (++b) prefix Increment numbers किया और b variable की value को display किया गया हैं
console.log inbuilt function की मदद्द से (++) Increment Operators ki सहयता से (b++) postfix Increment numbers किया और b variable की value को display किया गया हैं
Program to use ( -- ) Decrement Operators JavaScript Language
let a = 5;
console.log('a = ',a)
console.log('--a = ',--a)
console.log('a-- = ',a--)
Output
a = 5 , --a = 4 , a-- = 4
Steps Description
Declare variable a
Initialize variable with value of 5 respectively a=5
console.log inbuilt function की मदद्द से a variable की value को display किया गया हैं
console.log inbuilt function की मदद्द से (--) Decrement Operators की सहयता से (--a) prefix Decrement numbers किया और a variable की value को display किया गया हैं
console.log inbuilt function की मदद्द से (--) Decrement Operators ki सहयता से (a--) postfix Decrement numbers किया और a variable की value को display किया गया हैं
Program to use ( ** ) Exponentiation Operators JavaScript Language
let a = 5;
let b = 3;
let c;
c = a ** b;
console.log('c = ', c);
Output
c = 125
Steps Description
Declare three variables a, b and c
Initialize both variables with value of 5 and 3 respectively a=5, b=3
Assign c variable with Assignment Operators (=) with the Exponentiation value of variables a and b
a, b variables की value को (**) Exponentiation Operators ki सहयता से a*b numbers को Exponentiation (5**3 / 5*5*5 = 125) किया गया हैं
console.log inbuilt function की मदद्द से c variable की value को display किया गया हैं