exercism.org/c/armstrong-numbers/armstrong_numbers.h

9 lines
128 B
C
Raw Normal View History

2024-03-24 18:34:11 +01:00
#ifndef ARMSTRONG_NUMBERS_H
#define ARMSTRONG_NUMBERS_H
#include <stdbool.h>
bool is_armstrong_number(int candidate);
#endif