#include <stdio.h> int main () { int power (int a , int n) { int x = 1 ; while (n>0){ n=n-1 ; x=x*a ; } return x ; } printf ("%d", power(2,5)); int }