[Solved] how to convert char in octal format without standart C functions like print(f) [closed]
Decimal and octal are number bases, this only matters when presenting a number (or when inputing a number); the actual number is generally stored in binary in the computer’s memory but this doesn’t often matter to typical programs. In your case, conversion to octal generally involves extracting three bits at a time (since 23 is … Read more