c-course/c-basic/main.c

17 lines
167 B
C
Raw Normal View History

#include <stdio.h>
#ifndef HEX_READ_SCANF_H
#define HEX_READ_SCANF_H
2025-04-12 23:13:13 +03:00
extern void hex_scan();
#endif // HEX_READ_SCANF_H
int main()
{
2025-04-12 23:13:13 +03:00
hex_scan();
return 0;
}