home.social

Search

1000 results for “array”

  1. @RL_Dane @array @benjaminhollon I have a #system76 lemur pro, and still prefer a #thinkpad. All day. Every day. My favorite is my #x61 #x62 frankenstein

  2. @RL_Dane @array @benjaminhollon I have a #system76 lemur pro, and still prefer a #thinkpad. All day. Every day. My favorite is my #x61 #x62 frankenstein

  3. @RL_Dane @array @benjaminhollon I have a #system76 lemur pro, and still prefer a #thinkpad. All day. Every day. My favorite is my #x61 #x62 frankenstein

  4. @RL_Dane @array @benjaminhollon I have a #system76 lemur pro, and still prefer a #thinkpad. All day. Every day. My favorite is my #x61 #x62 frankenstein

  5. TIL: C array subscript operators are handled in such a way that `letters[i]` is equivalent to `*(letters + i)` and because addition is commutative, that expression is identical to `*(i + letters)`, which means that `i[letters]` is the same as `letters[i]`.

    ```
    #include <stdio.h>
    #include <stddef.h>

    int main() {
    char letters[3] = "abc";
    size_t i = 2;
    printf("letters: %p\n", (void *)&letters);
    printf("i[letters] (%p): %c\n", (void*)&(i[letters]), i[letters]);
    printf("letters[i] (%p): %c\n", (void*)&(letters[i]), letters[i]);
    return 0;
    }
    ```

    Which outputs:
    ```
    letters: 0x7ffc68ec7bb9
    i[letters] (0x7ffc68ec7bbb): c
    letters[i] (0x7ffc68ec7bbb): c
    ```

    Mind blown... :neofox_floof_explode:
    #til #clang #pointers #programming

  6. Discover an Exciting Array of Releases from Signature This June! 🌟 Check out this month's fantastic lineup at Signature. Don't miss out on the latest offerings! 🔗 blazingminds.co.uk/selection-g #SignatureReleases #June2025 #NewArrivals

  7. Apparently #EricTrump is involved with a wind powered #Bitcoin mining company.

    "Donald Trump and his family have added billions to their net worth since Inauguration Day, with much of that new wealth coming from a dizzying array of crypto projects. But some of those gains are under threat, thanks to the crypto sector’s recent struggles. The latest blow is a second consecutive reported loss for Eric Trump’s American Bitcoin Corp, a wind-powered bitcoin mining company. The $82 million loss, from the first quarter of 2026, is largely due to the continued slump in bitcoin prices. It follows the same pattern as Trump Media and Technology Group—the parent company of the president’s Truth Social platform—which has lost $1.1 billion since its founding, almost entirely due to losses on bitcoin."

    #TrumpMedia #TrumpBusiness #TrumpFailure #TrumpCorruption #Trump

    motherjones.com/politics/2026/