(10%)
Determine whether the following code is correct or not. If it is
correct, predict its output. If it is incorrect, point out the
mistake(s).
/* Raise to the power */
#include <iostream>
#include <cmath>
int main ()
{
std::cout << static_cast<short>( pow(1024.0, 0.2) ) << std::endl;
return 0;
}