Q-1.Write a C program to accept a value in degrees Celsius and to convert it into Fahrenheit. [Hint: C/5 = (F-32)/9].
Q-2.Write a C program to accept a student's marks in Physics,Chemistry, and Biology. The total of these marks as well as the average should be displayed.
Q-3.Write a C program to accept two numbers and display sum, mul, div and sub.
Q-4.Write a C program to accept 5 numbers from the user and display average.
Q-5.Write a C program to accept two numbers from the user and swap their values with third variable.
Q-6.Write a C program to accept two numbers from the user and swap their values without third variable.
Q-7.Write a C program to accept one number from the user and display square.
Q-8.Write a C program to accept one number from the user and display cube.
Q-9.Write a C program to accept basic salary, hra,ta,da,esi,pf from the user and calculate net salary. [Hint: (basic+hra+ta+da)-(esi+pf).
Q-10.Write a C program to accept shopping price from the user and display net amount to pay after 10% discount.