C

  • C

C Program To Display Zodiac Sign for Given Date of Birth

Write a C program that receives month and date of birth as input and prints the corresponding Zodiac sign or…

5 years ago
  • C

C Program To Convert (R, G, B) To (C, M, Y, K) Color Format

In digital world colors are specified in Red-Green-Blue (RGB) format, with values of R, G, B varying on an integer…

5 years ago
  • C

C Program To Determine Leap Year or Not using Logical Operators

Any year is entered through the keyboard, write a C program to determine whether the year is a leap year…

5 years ago
  • C

C Program To Determine Weight Class of a Boxer

In boxing the weight class of a boxer is decided as per the following table. Write a C program that…

5 years ago
  • C

C Program To Find Grade of Steel

A certain grade of steel is graded according to the following conditions: 1. Hardness must be greater than 50. 2.…

5 years ago
  • C

C Program To Check For Alphabet, Number and Special Symbol

Any character is entered through the keyboard, write a C program to determine whether the character entered is a capital…

5 years ago
  • C

C Program To Check In Which Quadrant The Point Lies

Lets write a C program to determine the position of point(x,y) on the graph of x and y axis. Important:…

5 years ago
  • C

C Program To Check If Point Lies on x-axis or y-axis or Origin

Given a point (x, y), write a C program to find out if it lies on the x-axis, y-axis or…

5 years ago
  • C

C Program To Check If Point Lies Inside, Outside or On The Circle

Given the coordinates(cx, cy) of center of a circle and its radius, write a C program that will determine whether…

5 years ago
  • C

C Program To Check If Three Points Are On One Straight Line

Given three points (x1, y1), (x2, y2) and (x3, y3), write a C program to check if all the three…

5 years ago