After:

// Computing nth power of 2
power = 1;
for( count = 0; count < n ; count++ )
{
   power *= 2;
}