this post was submitted on 02 Feb 2024
285 points (96.7% liked)

Programmer Humor

19315 readers
76 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
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 55 points 8 months ago (26 children)

The fact it's a pointer is part of the type, not part of the variable name. So int* p is the way.

[–] [email protected] 82 points 8 months ago* (last edited 8 months ago) (8 children)

You would think so, but int* a, b is actually eqivalent to int* a; int b, so the asterisk actually does go with the name. Writing int* a, *b is inconsistent, so int *a, *b is the way to go.

[–] [email protected] 8 points 8 months ago

Alright, I'll never, ever write something this way now. Good to know.

load more comments (7 replies)
load more comments (24 replies)