1
2
3
4
5
6
7
8
9
// non-working illustration

void print_integer(int n, int radix, char* prefix) {
    long n_abs = n;
    if(n < 0) {
        n_abs = -n;
    }
    assert(n_abs >= 0);
}

© Copyright 2022 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.