Assignment Task: C Programming
Problem 1: Write a C program that convert a temperature from Centigrade to Fahrenheit.
Problem 2: Write a C program that prints the perimeter of a rectangle to take its height and width as input.
Problem 3: Write a C program that takes hours and minutes as input, and calculates the total number of minutes.
Problem 4: Write a C program to find whether a given year is a leap year or not.
Problem 5: Write a C program to find the eligibility of admission for a professional course based on the following criteria:
Marks in Maths >=65
Marks in Phy >=55
Marks in Chem>=50
Total in all three subject >=180
or
Total in Math and Physics >=140
Problem 6: Write a program in C to display the pattern like right angle triangle using an asterisk.
Problem 7: Write a program in C to make such a pattern like right angle triangle with number increased by 1.
Problem 8: Write a program in C to make such a pattern like a pyramid with numbers increased by 1.
Problem 9: Write a C program to calculate the factorial of a given number.
Problem 10: Write a program in C to find the sum of the series [1-X^2/2!+X^4/4!- .........].