I just had a quick question in regards to do a power of 1/2 in C, I know about the pow function but I wish to do something else.
My goal is to make the following line into code where h is elevated to 0.5 R = -(g/2) + (h)½
I have tried r = (-(g/2) + (h*½));
but I doubt thats correct.