Can I print an integer in binary without additional cycles, conditions, and so on? I know that you can print a number in HEX printf("%x", a)
in decimal printf("%d", a)
in octal printf("%o", a)
, but i can't find args for binary. Can you help me?
12 -> 00001100