mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-18 12:02:53 +02:00
feat: usage of ESM modules imports (instead of CommonJS) (#14)
This commit is contained in:
@ -17,7 +17,7 @@ void print_couple(int* numbers, size_t couple_length) {
|
||||
|
||||
int main() {
|
||||
size_t couple_length;
|
||||
scanf("%ld\n", &couple_length);
|
||||
scanf("%lu\n", &couple_length);
|
||||
char* string = input();
|
||||
char* token = strtok(string, " ; ");
|
||||
size_t numbers_length = 1;
|
||||
|
Reference in New Issue
Block a user