The superscript is just for the purpose of the post, you don't put superscript in actual code to indicate raising something to a specific exponent. In actual code, raising something to a power can be done with the pow function.

Code:
area = PI * pow(radius,2.0);
...or for this particular case it's easy enough for you to just multiply radius by itself:

Code:
area = PI * radius * radius;