this post was submitted on 05 Aug 2024
266 points (94.3% liked)

Programmer Humor

19166 readers
715 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
266
Do you know who can help? (programming.dev)
submitted 1 month ago* (last edited 1 month ago) by [email protected] to c/[email protected]
 
all 19 comments
sorted by: hot top controversial new old
[–] [email protected] 36 points 1 month ago (1 children)

If I had a penny for every pixel ... I'd have around $1088. Which I would take, but really it's not enough.

[–] [email protected] 16 points 1 month ago* (last edited 1 month ago)

just edited to upscale the image

[–] [email protected] 33 points 1 month ago (1 children)

I don't think I've ever explicitly gone four deep. Two is common enough, and three happens on some rare occasions, but four seems like sheer madness.

[–] [email protected] 11 points 1 month ago (1 children)

Dumb question, but when would you need two deep? Is it when you store a pointer as a field in a struct?

If so, isn't that a massive footgun, because the pointer might go invalid at any point? 🫠

[–] [email protected] 20 points 1 month ago (1 children)

Pointers to arrays or arrays of pointers are common examples.

Your pointers won't just magically become invalid. You gotta fuck 'em up first.

[–] [email protected] 4 points 1 month ago (1 children)

Ah, you mean "pointers to arrays", because arrays are themselves just pointers in C/C++. That one still feels like it shouldn't be needed in practice, because you already got a pointer, why can't you use that directly? But yeah, I have no practical experience with C/C++.

And you do gotta fuck 'em up, as in free what they're pointing to before you free the struct/array containing the pointers.
But when you do stick them into a struct/array, that often means you want to move them out of the scope with the malloc and potentially store them, too.
At that point, surely, it becomes rather difficult for your whole team to know or track down when it's legal to free that.

I only know from Rust that if you want to store a pointer/reference in a struct, it makes you specify the lifetime of that struct, which has to be greater or equal to the lifetime of the thing the pointer is pointing to. Hairy stuff. We've basically told the Rust newbies on our team to just not store pointers in structs and that's working rather alright.

[–] [email protected] 4 points 1 month ago

Arrays may be implemented as pointers on C, but the distinction is on how they are used, which is why I used the verbiage I did.

What if you need to modify a reference to a pointer, e.g. change the value of a value referencing a certain place in an array? strtol(), for example, uses a pointer to a pointer to a char to indicate the end of the parsed portion of the input string.

Major codebases performing high-level operations on data that's shared in barely trackable scopes certainly aren't best implemented in C. It's still the language of choice for low-level code, especially on embedded systems, where allocations are not taken lightly.

[–] [email protected] 25 points 1 month ago (1 children)

Once your pointer definition looks like a censored swear word you're doing something awful.

In my entire programming career I've used int ** less than a handful of times and I've always been borderline about refactoring when I need it.

[–] [email protected] 6 points 1 month ago* (last edited 1 month ago)

Okay, but what if you're dealing with a rather high-dimensional tensor? In some kinds of coding it can happen, and you usually don't want to sacrifice performance when it does.

You can also do increasingly elaborate pointer arithmetic, but that seems worse, not better to me.

[–] [email protected] 19 points 1 month ago* (last edited 1 month ago)
*char // I heard it from a friend
**char //who heard it from a friend
***char // who heard it from another
"You were messing around"
[–] [email protected] 10 points 1 month ago

Me: building a fluent interface framework...
I already support a WrapperOf<T, T, T, T>
User: Can I have a WrapperOf<T, T, T, T, T> because I'm doing something weird?
Me: *sigh* god-damnit. You're right but I still hate it.

[–] [email protected] 6 points 1 month ago* (last edited 1 month ago)

int

I am a friend.

[–] [email protected] 4 points 1 month ago (1 children)

Is there a code example of this?

[–] [email protected] 5 points 1 month ago* (last edited 1 month ago) (2 children)

I've been a four-star programmer a few times. Imagine a blocked symmetric matrix where the rows and columns are indexed by triples (u,v,w). The entries are zero whenever u != u' or v != v', and because of symmetry you only store entries with w <= w'. But the range of v depends on the value of u and the range of w on the value of v. So you do

double ****mat = calloc (UMAX, sizeof(*mat));
for (int u = 0; u < UMAX; ++u) {
  mat[u] = calloc (u + 1, sizeof(**mat));
  for (int v = 0; v <= u; ++v) {
    mat[u][v] = calloc (v + 1, sizeof(***mat));
    for (int w = 0; w <= v; ++w) {
      mat[u][v][w] = calloc (w + 1, sizeof(****mat));
      for (int ww = 0; ww <= w; ++ww)
        mat[u][v][w][ww] = some_function (u, v, w, ww);
    }
  }
}

and weep a little. In reality, this gets a bit optimized by allocating a single chunk of memory and carving that up into the pointer and data arrays, so everything is reasonably close together in memory.

[–] [email protected] 4 points 1 month ago

uwu, got it.

[–] [email protected] 3 points 1 month ago

My brain hurts

[–] [email protected] 1 points 1 month ago

I know a friend who can point you to a region in memory where you can insert your exploit. You're welcome.

Anti Commercial-AI license