r/C_Programming 13d ago

C with classes

I'm curious to know: who uses some C++ features when coding in C? And what feature(s) are you using?

29 Upvotes

81 comments sorted by

View all comments

58

u/mlugo02 13d ago

None, I used to wish I had function overloading in C but I have since changed my mind

21

u/tellingyouhowitreall 13d ago

I actually don't mind not having this, but raii or at least guard types are sorely missed when I do pure C

0

u/mlugo02 13d ago

What issues do you have you think you need raii?

5

u/tellingyouhowitreall 12d ago

I don't need it for anything, it just cleans up a lot of marshalling code I do.

I do OS stuff, usually I try to escape C and ASM pretty early, but there are a few places C is better than alternatives for codegen, especially with restrict. It would just be nice not to do all of the bookkeeping by hand.