Write a program that requests a user to enter weight in kg in c programming. The program converts it in pounds (pound = 2.2*kg).
basic input and output
WAP to calculate the area of a triangle
Write a program to calculate the area of a triangle with sides a, b, and c.
WAP to calculate the area and circumference of a circle
Write a program to read the radius of a circle and to compute its area and circumference. Use a symbolic constant to define the value of π. /* Write a program to read the radius of a circle and to compute its area and circumference. Use a symbolic constant to define the value of pie …
Read moreWAP to calculate the area and circumference of a circle
WAP to accept temperature in Fahrenheit and convert it into degree Celsius
Write a program to accept temperature in Fahrenheit and convert it into degree Celsius
F = (C*9/5)+32
Read moreWAP to accept temperature in Fahrenheit and convert it into degree Celsius
WAP using printf() function and different escape sequences
Write a program using printf() function and different escape sequences to give the output.
Read moreWAP using printf() function and different escape sequences