Make table of values

Decimal Binary Hexadecimal Char
33 00100001 0x21 !
34 00100010 0x22 "
35 00100011 0x23 #

I'm trying to do this from 0-127, I have the code to make it go from decimal to binary and hexadecimal but not to output from 0-127

F.e. use a for-loop.

1
2
3
4
for (unsigned int i = 0; i <= 127; i++)
{
    // Call your function with `i´ as argument here
}
Topic archived. No new replies allowed.