From:  Student Project <student@invalid.invalid>
Date:  04 Oct 2024 12:54:19 Hong Kong Time
Newsgroup:  news.alt119.net/comp.lang.c
Subject:  

It's quite easy to do something like this

NNTP-Posting-Host:  null

    2 :   = 0000000000000010
    4 :   = 0000000000000100
    8 :   = 0000000000001000
   16 :   = 0000000000010000
   32 :   = 0000000000100000
   64 :   = 0000000001000000
  128 :   = 0000000010000000
  256 :   = 0000000100000000
  512 :   = 0000001000000000
1024 :   = 0000010000000000

Base 8
    2 :   = 0000000000000002
    4 :   = 0000000000000004
    8 :   = 0000000000000010
   16 :   = 0000000000000020
   32 :   = 0000000000000040
   64 :   = 0000000000000100
  128 :   = 0000000000000200
  256 :   = 0000000000000400
  512 :   = 0000000000001000
1024 :   = 0000000000002000

Base 16
    2 :   = 0000000000000002
    4 :   = 0000000000000004
    8 :   = 0000000000000008
   16 :   = 0000000000000010
   32 :   = 0000000000000020
   64 :   = 0000000000000040
  128 :   = 0000000000000080
  256 :   = 0000000000000100
  512 :   = 0000000000000200
1024 :   = 0000000000000400