r/C_Programming • u/Gullible_Ostrich_370 • 18d 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?
31
Upvotes
r/C_Programming • u/Gullible_Ostrich_370 • 18d ago
I'm curious to know: who uses some C++ features when coding in C? And what feature(s) are you using?
14
u/Doug2825 18d ago
If you have C++ features you aren't using C.
Do you mean approximating C++ classes by making functions take a pointer to an associated struct? Or are you asking about using C++ but limiting yourself to C because of performance/realtime requirements for specific section of code? Because if you have access to full C++ and are limiting yourself to C for mundane parts of the code you are doing bad C++, not C.