#include <stdio.h>
int main()
{
float a;
printf("enter the temperature in C\n");
scanf("%f", &a);
printf("the given temperature in frhenit is %f", 9 * a / 5 + 32);
return 0;
}
Hackathons are often associated with computer science students, experienced developers, and teams that already know exactly what they are...
No comments:
Post a Comment