#include <stdio.h>
void temperature (int T);
int main() {
int T;
printf("enter temperature");
scanf("%d", &T);
printf("it is ")
return 0;
}
void emperature (int T){
if(T<=27){
printf("cold");
}
else(T>50);{
printf("Hot");
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: