Saturday, September 7, 2019

Farenhite to celcius

#include <stdio.h>

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

printf("temprature in celcius is %f",C);

}

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...