blob: 9e1b8dd8d1e6d4a2992f3f4c3eb8c341d1dc8eec (
plain) (
tree)
|
|
#include <stdio.h>
#define TRUE 1
float conv_temp(int temp_c);
int
main(void)
{
int input, temp_c;
while(TRUE) {
printf("Enter temp in C: ");
scanf("%d", &temp_c);
printf("%d C is %.1f F\n", temp_c, conv_temp(temp_c));
}
return 0;
}
float
conv_temp(int temp_c)
{
return (9.0/5.0 * temp_c) + 32.0;
}
|