Hi,
I live in the pacific northwest. I am teaching myself C++. I would really appreciate it if someone(s) out there might be able to share some insight into a career related to programming (what I need to learn, how I can network, etc.) I currently am employed, I have a degree in an unrelated field. I am teaching myself programming so I can change careers. I am learning C++ because it is an interesting challenge, and it is the Latin of programming languages. My hope here is that when I begin to learn other programming languages, they will be easier to learn because everything seems to be based in some way on C++.
My hope here is that when I begin to learn other programming languages, they will be easier to learn because everything seems to be based in some way on C++.
Actually not quite. Every programming language has different techniques of code implementation. In C/C++, source codes are 'compiled' and in languages like Python, source codes are 'interpreted'. So all languages are not based upon each other fully (http://puu.sh/7QuhU.png). Also, in C++, a lot of theory is used even before we get into code. So, as you are already learning C++, it'll no doubr make easier for you to pick up other languages upto some extent since theoretical models of class, function, variable, etc are same in every language. Only language syntax varies.
Even though C++ is quite popular, don't just study that. Java is also quite popular nowadays. It would help to learn multiple programming languages like Java, C# and C++ as well as web-based languages like JavaScript, Html, etc....
If you're a newer programmer and want to start out, your best option would be to look for a code analyst job. What you do is you analyze other people's code and look for bugs, etc...
It's never enough to learn just one language. Even though C++ is a good choice for your first language, it's not a good thing to just stop there. Other languages like Java and C# are used extensively as well. In fact, some schools prefer to teach Java before letting you learn C++.
Actually not quite. Every programming language has different techniques of code implementation. In C/C++, source codes are 'compiled' and in languages like Python, source codes are 'interpreted'.
no... there are python compilers and c++ interpreters. the difference is which is widely used