I've been trying to do this for hours. I just don't know how. I'm familiar with recurrence relations in the form of $T(\frac{n}{2})$, but what do you need to do to solve $T(n^\frac{1}{2})$?
I've assumed $T(1)$ and $c$ are constants. So this is when $n = 2$?
Do the variable change $n = 2^{2^k}$, so you can take square roots every time. Your base case is $n = 2$, i.e., $k = 0$. You get a simple recurrence for $T(2^{2^k})$.