this post was submitted on 25 Apr 2024
722 points (95.6% liked)

Programmer Humor

19187 readers
1203 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
 

cross-posted from: https://lemmy.ml/post/14869314

"I want to live forever in AI"

you are viewing a single comment's thread
view the rest of the comments
[โ€“] pewpew@feddit.it 13 points 4 months ago (15 children)

Whats the difference between void fn(Type& var) and void fn(Type* var)?

[โ€“] cbazero@programming.dev 8 points 4 months ago

I guess you ask for C++. There Type* can be null while Type& can't be null. When it gets compiled Type& is compiled (mostly) to the same machinecode as Type*.

load more comments (14 replies)