• @[email protected]
    link
    fedilink
    English
    5810 months ago

    Are you indexing your fingers or counting them ?

    Indexing starts ar 0 but counting starts at 1.

    • @FriendOfElphaba
      link
      English
      2710 months ago

      This.

      One of the reasons indexing starts at zero is because back when we used to use pointers and memory addresses, the first byte(s) of an array were at the address where the array was stored. Let’s say it is at 1234. If it was an array of bytes, the first data element was at 1234, or 1234 + 0. The second element would be at 1235, or 1234 + 1. So the first element is at location 0 and the second at location 1, where the index is actually just an offset from the base address. There may be other/better reasons, but that’s what I was taught back in the 90s.

      Counting always starts at 1 (if we’re only using integers). You don’t eat a hamburger and say you ate zero hamburgers.

      • Haus
        link
        fedilink
        10
        edit-2
        10 months ago

        There was a time when I had to switch back and forth between Fortran90 and C several times a day, and it messed me up so bad that doing simple tasks like counting apples at the grocery gave me anxiety.

      • Sonotsugipaa
        link
        fedilink
        English
        910 months ago

        I do say I ate zero hamburgers if I just started counting and I have yet to eat one

        • @FriendOfElphaba
          link
          English
          210 months ago

          When you’ve eaten more than 50% of the hamburger, do you claim to have eaten one, or do you claim zero? Are you useing standard founding or are you using floor()?

          • Sonotsugipaa
            link
            fedilink
            English
            210 months ago

            I create a Vulkan instance, a device, a compute pipeline then use an image sampler with VK_FILTER_LINEAR on a single-texel image in order to interpolate the two adjacent values of hamburger eatage, simple as.

        • @FriendOfElphaba
          link
          English
          310 months ago

          Perchance programming with pointers has plunged as a percentage of programmers.

          But thank you. I was hoping someone would notice that.

          • @[email protected]
            link
            fedilink
            1
            edit-2
            10 months ago

            Well, you don’t really see many people accessing lists with pointers directly. Also 0-indexing does give us an extra number to index with(say 1-255 vs 0-255)

            Edit: 0-255, not 0-256