#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;
}
In software engineering, the software scope refers to the boundaries and limitations of a software project. It defines what the software wi...
No comments:
Post a Comment