+ 1
C vs c++
Is it just me or is c++ more intuitive than c?
1 Resposta
+ 2
Yes, often C++ is more intuitive (mostly because of OOP and the STL), but sometimes C++ has some weird things, too. That's because every few years new features were added to C++ but it still remained compatible with older version. (C however didn't change much since 1999). Therefore bad things in older versions of C++ couldn't be improved and new features sometimes didn't feel very intuitive. That's also a reason why I use Rust instead of C++ :)