this post was submitted on 15 Aug 2023
740 points (97.1% liked)

Programmer Humor

31779 readers
373 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
[–] exoplanetary@lemmy.world 13 points 1 year ago (1 children)

Yep, main returns an int in C++. It’s for the return code - if it returns 0, that indicates the program ran ok, if it returns anything else some sort of error occurred.

[–] Neon@kbin.social 3 points 1 year ago

that actually makes sense. thanks for that explanation.