Welcome to the World of Online Learning:
Hello Friends “This blog helps you to learn C programming concepts. You can learn C language at your own speed and time. One can learn concepts of C language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.”

Write a C program to Convert celcius to farenheit
PROGRAM: Convert celcius to farenheit
/* convert celcius to farenheit */
#include<stdio.h>
int main()
{
float c,f;
printf(“Type celcius: “);
scanf(“%f”,&c);
f = c * 9/5 + 32;
printf(“farenheit: %f”,f);
return 0;
}