Wind chill

Discussion thread for Wind chill.

What am I doing wrong here? Raising v to the power of 0.16 either requires math.h with -lm in the gcc options, or I have to write my own function to raise values to fractional powers.

I’m guessing the first is the requirement, because the second wouldn’t fall into the ‘easy’ category. However, I’ve tried it both ways and neither worked.

What am I missing?

Hey raising to the power doesn’t need math.h you just use ** as raising to the power which is annoying and I forgot cause it really should be ^ since that’s kinda the standard

for example if you want to raise 2 to some power you just write 2**num