Difference between LSD and MSD in data structure

LSD and MSD in Data Structure:

The number system we use is a positional number system meaning that the position of each digit has an associated weight. The value of a given number is equivalent to the weighted sum of all its digits.

1234.5610 = 1×103 + 2×102 + 3×101 + 4×100 + 5×10-1 + 6×10-2

Difference between LSD and MSD in data structure

The leftmost digit is called the most-significant digit (MSD). The rightmost digit is called the least-significant digit (LSD).