Program to calculate Grade of Student
Description To calculate grade first calculate the percentage marks of student. Now according to percentage, find grade of student. C/C++ /* C Program to calculate Grade of Student */ //Save…
Basic program in C/C++ And Java
Description To calculate grade first calculate the percentage marks of student. Now according to percentage, find grade of student. C/C++ /* C Program to calculate Grade of Student */ //Save…
Description To calculate percentage marks, calculate total mark obtained. Multiply total obtained mark by 100 and divide it by total marks of exam. C/C++ /* C Program to calculate percentage…
Description Gross salary is the sum of basic salary, da and hra. C/C++ /* C Program to calculate Gross Salary */ //Save it as GrossSalary.c #include<stdio.h> int main(){ float basicSalary,…
Description The formula to calculate simple interest is: simple interest = (principle x rate x time) / 100 C/C++ /* C Program to find simple interest */ //Save it as…
Description Permutation is the different arrangements of the set elements. The arrangements can be made by taking one element at a time, some element at a time and all elements…
Description To calculate the power of a number, the base and power is user input. Here pow() function used for calculating the power. C/C++ /* C Program to calculate power…
Description The quotient is evaluated using / (the division operator), and stored in quotient. The remainder is evaluated using % (the modulo operator) and stored in remainder. C/C++ /* C…
Description To find modulus of values in variables firstNumber and secondNumber, the arithmetic operator % is used and the result is stored in the variable mod. C/C++ /* C Program…
Description In this program, program will take two number as input and give division of the two number as output. The first input stored in variable firstNumber and second input…
Description In this program, program will take two number as input and give multiplication of the two number as output. The first input stored in variable firstNumber and second input…