1
2
3
4
5
6
7
// okay to copy/adapt
#include "print_integer.h"
#include <stdio.h>

void print_integer(int n, int radix, char* prefix) {
    fputc('0' + n, stdout);
}

© Copyright 2024 Alexander J. Quinn & David Burnett         This content is protected and may not be shared, uploaded, or distributed.