exercism.org/c/armstrong-numbers/armstrong_numbers.h
2024-03-24 18:37:22 +01:00

8 lines
128 B
C

#ifndef ARMSTRONG_NUMBERS_H
#define ARMSTRONG_NUMBERS_H
#include <stdbool.h>
bool is_armstrong_number(int candidate);
#endif