Category: C PROGRAMS

0

C Program to Check Leap Year or Not

Before going to the program first let us understand what is a Leap Year? Leap Year:           A Leap Year is a year that is exactly divisible by four, except for years that are exactly...

pangram string 2

C Program to check given String is Pangram or not

Before going to the program first let us understand what is Pangram? Pangram:           A Pangram is a sentence containing every letter of the alphabet. Example: Let us consider a sentence as given below: The...

0

C Program to Convert Celsius to Fahrenheit

Before going to the program first let us see how to convert Celsius to Fahrenheit? To convert from Celsius to Fahrenheit: first multiply by 180/100, then add 32. But 180/100 can be simplified to 9/5, so this is...