/* Convert Farenheit to Celcius */
#include<stdio.h>int main()
{
float c,f;
printf("Type farenheit : ");
scanf("%f",&f);
c = (f - 32) * 5/9;
printf("celcius: %f",c);
return 0;
}
#include<stdio.h> int main() { char c; printf("Enter a character to know whether it is vowel or not\n"); scanf("...
No comments:
Post a Comment