#include
#define TimeConverter 60
#define TempFormula time * time * 4 / time + 2 - 20
double HoursMinToTime(int hour, int min);
double Temperature(
scanf requires the addresses of the variables to be passed to it. Replace your scanf by
scanf("%d %d",&hour,&min);
You should be good to go.
You need to pass the address of these variables. Make sure to pay special attention to function signatures because you can end up with very strange results. Also, turn all warnings on for your compiler.
scanf("%d %d", &hour, &min);
You could initialize your variables to their own addresses and "fix" this:
int hour, min;
hour = (int)&hour;
min = (int)&min;
(I am being a smart-ass, btw.)
scanf("%d %d", &hour, &min);