Questions tagged [number-systems]

Anything related to number systems, i.e. the way of representing numbers (the abstract mathematical entities) as finite sequences of symbols. Usually this tag is relevant on questions involving conversion from the representation in a number system to another (e.g. from decimal to binary).

106 questions
-5
votes
2 answers

C, decimal system to other base system without loops

Write a function unsigned int pose (unsigned int val, unsigned int base), which returns a value val given in decimal notation for each given value val. Value of val in the system can be construed with the base base. You can assume that base is…
1 2 3 4 5 6 7
8