написал bit_count, тесты и добавил цель в Makefile

This commit is contained in:
alexey
2025-12-05 01:03:04 +03:00
parent 48d46880ea
commit bfa5b6faef
15 changed files with 60 additions and 3 deletions

6
bit_lib.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef BIT_LIB_H
#define BIT_LIB_H
int bit_count(unsigned int number);
#endif