#include #include "power_of_two.h" int main() { unsigned char n = 63; for(unsigned char i = 0; i < n; i++) { printf("powerof_two(%u) = %lu\n",i,power_of_two(i)); } printf("powerof_two(%u) = %lu",n,power_of_two(n)); return 0; }