#include int power(int a, int b); int main(void) { int a = 2; int b = 6; printf("Power == %d\n", power(2, 6)); return 0; }