• @[email protected]
    link
    fedilink
    74 months ago

    So, when I want the void to point back at me, do I have to loop over void* or over NULL?
    And how many iterations?

    • @sus
      link
      3
      edit-2
      4 months ago

      as many iterations as it takes

      void* x = &x;
      char* ptr = (char*)&x;
      
      while (1) {
          printf("%d\n", (unsigned int)*ptr);
          ptr--;
      }