Octal to Decimal Conversion
🔶 PART 1: Manual Method (Step-by-step)
🔹 Example: Convert 237 (Octal) to Decimal
First, write each digit with its position (right to left):
Digits: 2 3 7
Position: 2 1 0
Use the formula:
Decimal = (2 × 8²) + (3 × 8¹) + (7 ×...
safiakhatoon.hashnode.dev2 min read