1 2 3 4 5 6 7 8
#ifndef ARMSTRONG_NUMBERS #define ARMSTRONG_NUMBERS #include <stdbool.h> bool is_armstrong_number(unsigned int); #endif