Implemented long division algorithm and added printf for big integers

This commit is contained in:
2025-11-17 10:54:23 +01:00
parent fd07e27337
commit 3ff89c8d35
4 changed files with 287 additions and 483 deletions

View File

@@ -208,7 +208,7 @@ void test_vector_sort_string() {
// Sort vector with custom data type
typedef struct {
char name[256];
const char *name;
int age;
} Person;