Big Endian to Little Endian System | Embedded SWE | Interview Question Discussion

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 พ.ย. 2024

ความคิดเห็น • 3

  • @aminebesbes6202
    @aminebesbes6202 2 ปีที่แล้ว +7

    The input should be 1024bit

  • @leonelgomes3633
    @leonelgomes3633 ปีที่แล้ว

    Thanks for taking your time creating this video. Interesting to see how you break down this problem into small chunks. Just an observation though: when i = 0, inp[128] will read outside the memory allocated to inp as it is zero indexed, and when i = 127, last iteration, it'll read inp[1], when you'd want inp[0]. so you should instead do inp[128 -1 - i ].

  • @oweny2453
    @oweny2453 5 หลายเดือนก่อน

    input should be 1024 bit and it should be 127 - i instead of 128 -i !