1
2
3
4
5
6
7
8
9
// This illustrates what NOT to do when building mintf(…) for the first time.

int main(int argc, char* argv[]) {
    // Test 1
    mintf("768336:  decimal:%d  hexadecimal:%x  binary:%b", 768336, 768336, 768336);
    // BAD because we are adding many piece of functionality all at once.

    return EXIT_SUCCESS;
}

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