this post was submitted on 26 Apr 2024
456 points (96.7% liked)

Programmer Humor

32291 readers
32 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 6 months ago (1 children)

Linux has better error messages. "Dazed and confused, but trying to continue".

[–] [email protected] 5 points 5 months ago (2 children)

I am spoiled by dotnet and rust error messages. They tell you exactly what the problem is, where it is, and in rust's case sometimes even how to fix it

Then there's C with "segmentation fault"

[–] [email protected] 3 points 5 months ago* (last edited 5 months ago) (1 children)

and in rust's case sometimes even how to fix it

Then there's C with "segmentation fault"

  1. You are comparing compiler-generated errors and runtime errors
  2. Rust can trigger segmentation fault and bus error too.
  3. GCC's error messages are very detailed, sometimes can contain suggested solutions.

For example if I will try to compile helloworld without including stdio.h, gcc will warn implicit declaration of function ‘printf’(by default, almost everyone make it error with -Werror=) and will suggest note: include ‘<stdio.h>’ or provide a declaration of ‘printf’. And runtime error reports are as good as programmer makes them, no matter language program was written in.

I am spoiled by core dumps(although rust technically has them too).

Also in context of kernel, it will print stack trace and (if used) will kexec into another kernel that can make core dump or continue working.

[–] [email protected] 1 points 5 months ago

I do not code in C it was just a throwaway meme lol

[–] [email protected] 2 points 5 months ago* (last edited 5 months ago)

Then there’s C with “segmentation fault”

Successfully triggered a sea fan. (not me, another dude in the comments)

Anti Commercial-AI license