/* Convert Celcius to Farenheit */
#include<stdio.h>
int main()
{
float c,f;
printf("Type celcius: ");
scanf("%f",&c);
f = c * 9/5 + 32;
printf("farenheit: %f",f);
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