c-course/c-basic/main.c

11 lines
98 B
C
Raw Normal View History

#include <stdio.h>
2025-06-18 07:35:11 +03:00
#include "hex_read_scanf.h"
2025-06-16 21:32:07 +03:00
int main() {
2025-06-17 13:10:20 +03:00
2025-06-18 07:35:11 +03:00
hex_scan();
2025-06-17 13:10:20 +03:00
2025-06-16 21:32:07 +03:00
return 0;
}
2025-06-17 13:10:20 +03:00