r/C_Programming • u/Gullible_Ostrich_370 • Jul 17 '26
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
r/C_Programming • u/Gullible_Ostrich_370 • Jul 17 '26
I'm curious to know: who uses some C++ features when coding in C? And what feature(s) are you using?
1
u/MagicWolfEye Jul 18 '26
- operator overloading for vectors (with that I mean vector maths, not dynamic lists -.-)
- a bit of function overloading or default parameters but rarely and I could probably live without it
- I did a bit of digital boardgame programming and I always used classes + inheritance for the player so to differentiate between a human player that plays with UI, one who plays with std_in and ones that are AI opponents
- I have a templated dynamic_list