this post was submitted on 06 Jun 2025
8 points (58.0% liked)

Programmer Humor

36296 readers
1030 users here now

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

Rules:

founded 5 years ago
MODERATORS
 

I would like to know what programming language you use, why you made this choice and for what tasks it is used.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] TimeSquirrel@kbin.melroy.org 2 points 22 hours ago (1 children)

C++ because I use it for embedded systems, interfaces with and can easily use C code (opening up the ability to use 40+ years of libraries and already written code), and I'm 43 years old and don't feel like learning an entirely new programming paradigm (I like OOP it makes the most sense to me).

I like being able to drill down and manage all my own resources like memory, etc. when I need to as well. I'll use raw pointers with higher level abstractions all day depending on what's convenient.

[โ€“] Mirokhodets@lemmy.ml 2 points 20 hours ago

Wow! This is so cool, I'm learning C++ myself :)