Hi, I usualy try to solve class problems on my own but I am hitting a wall.
I am supposed to write a power function and call it in main but having problems like
Code:
void power(int base,int exponent)
{
for( i=0; i<exponent: i++ )
{
//This is my trouble area please help. Thanks
}
}