pairofstrings
- 411
- 7
Which is better Java or C/C++ with data structures and why?
pairofstrings said:Which is better Java or C/C++ with data structures and why?
Ivan92 said:It depends on what you want to do. However, C++ was the first programming language I learned. At my University, Computer Science and Engineering students would start with C++. The first day of lecture, my professor said to learn C++ before Java. I don't recall the reasons why.
chiro said:Learning C++ for Java is good for different reasons. One is that you understand what is going on. In C/C++ you have to deal with managing memory and working with pointers. This is good because it corresponds more or less with what is happening inside the computer (flat memory in your RAM that is not kernel memory).
pairofstrings said:What is flat memory in RAM and Kernel memory?