Beginning C++ 17

Eclipse with OpenJDK has been good for me? What am I missing?
It's been great for me too. Some folks don't like how they are changing the license model. Less of an open process. It's like what Oracle did with MySQL. Caused some new spinoffs.
 
Although I would never push anything that Microsoft holds, I can give myself some slack on C# because it is an ECMA standardized and regulated language even though MS invented the language and its .Net Framework bindings. In my mind, it's like having 1 foot in dog shit and the other in a fresh spa.

Here is the ECMA's specifiaction on C#
https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-334.pdf

Here is a nice book for learning the C# language.



https://www.mediafire.com/file/3ogm...rogramming.in.easy.steps.5th.Edition.zip/file
 
I hate that shit too...When I took C++,10 years ago,my teacher at the time kept telling everyone in the class,if you know arrays you know pointers....I dont see it at all..

:fuckyousay::fuckyousay::fuckyousay::fuckyousay:
Maybe the teacher was referring to C style strings. If you just point to element 0 in the array, the rest of the elements in the array are "in play" until you get to the null terminator.

The name of a array is also a pointer that holds a single address of the type of the variable usually element 0. You can use the indirection operator to "see" what you are referring to.

I'd help you get up to speed in no time!
 
Back
Top