Satish

  • C

Logical Operators In C

Logical Operators in C programming language return true(non-zero number) or false(0) value. Logical AND(&&) and logical OR(||) works on 2…

6 years ago
  • C

C Program to Calculate Gross Salary of an Employee

In a company an employee is paid as under: If his basic salary is less than 5000 then he'll get…

6 years ago
  • C

Simple Calculator Program using Switch Case: C

In this video tutorial we shall perform Addition, Subtraction, Multiplication and Division of numbers based on user input, using switch…

6 years ago
  • C

C Program To Check Leap Year

C Program to Find if a given Year is a Leap Year or Not. Leap Year Logic Leap Year 1.…

6 years ago
  • C

Roots of Quadratic Equation: C

Quadratic Equations are of the form ax2 + bx + c = 0. To find roots(root1 and root2) of such…

6 years ago