Thursday, September 5, 2019

Celsius to Fahrenheit (c)

#include <stdio.h>

   main()
{
float F,C;
printf("enter temperature in celcius\n");
scanf("%f",&C);
F=9/5*C+32;
printf("%f",F);

}


No comments:

Implement stsStr Leetcode solution

  28.   Implement strStr() Easy Implement  strStr() . Given two strings  needle  and  haystack , return the index of the first occurrence of...