Program to change Centigrade Into Fahenheit January 01, 2018 Programing In C No comments #include<conio.h> #include<stdio.h> void main() { int c,f,a,b; clrscr(); printf("Enter the value of Temperature in centigrate"); scanf("%d",&c); a=9*c; b=a/5; f=b+32; printf("%d",f); getch(); } Output Enter the value of Temperature in centigrade=55 131 Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook
0 comments:
Post a Comment