C

  • C

C Program To Calculate Volume of Cylinder

Given the values for radius and height of a cylinder, write a C program to calculate volume of the Cylinder.…

5 years ago
  • C

Modulus or Modulo Division In C Programming Language

Today lets learn about Modulus or Modulo or Modular Division in C programming language. Division Example 10 / 5 =…

5 years ago
  • C

21 Matchstick Game: C Program

Write a C program for a matchstick game being played between the computer and a user. Your program should ensure…

5 years ago
  • C

C Program To Find Range of Set of Numbers

Write a C program to find the range of a set of numbers entered through the keyboard. Range is the…

5 years ago
  • C

C Program To Calculate Overtime Pay of 10 Employees

Write a C program to calculate overtime pay of 10 employees. Overtime is paid at the rate of Rs 12…

5 years ago
  • C

C Program To Determine Designation of Employee Based On Salary

Rewrite the following C program using Conditional / Ternary Operator. Source Code: C Program To Determine Designation of Employee Based…

5 years ago
  • C

C Program To Check If Sum of Square of Sine and Cosine of an Angle is 1

Write a C program to receive value of an angle in degrees and check whether sum of squares of sine…

5 years ago
  • C

C Program To Find Special Symbol or Not using Conditional Operator

Using Conditional / Ternary Operator determine, whether a character entered through the keyboard is a Special Symbol or not. Note:…

5 years ago
  • C

C Program To Find Lowercase Alphabet or Not using Conditional Operator

Using Conditional Operator / Ternary Operator determine, whether the character entered through the keyboard is a lower case English alphabet…

5 years ago
  • C

C Program To Calculate BMI and BMI Category

The Body Mass Index (BMI) is defined as ratio of the weight of a person(in kilograms) to the square of…

5 years ago