Friday 10 March 2017

C program for converting temperature in degree celcius to Kelvin and Fahrenheit

#include <stdio.h>
main(){
            float c,k,f;
            printf("enter the temperature in Celsius");
            scanf("%f",&c);
            k = c + 273;
            f = 1.8 * c +32;
            printf("\n%f in C = %f in K = %f in F",c,k,f) ;

No comments:

Post a Comment

How to Invert an SVG image using CSS ?

You can invert your svg easily by using following css code svg { -webkit-filter: invert(100%); /* safari 6.0 - 9.0 */ filter...