Quote:
|
Originally Posted by jduke44 I was approached by my brother the other day asking if I can make applications bc I have general programming knowledge. The most I know is C. I didn't get all the info yet but I figured I would ask this question first. What programming language are most applications made from? I know this may be too general of a question but I was just curious. You can give the short versions of your answer as to not waste much time with it...yet. :D
Thanks guys. |
If you know C, you will be able to develop applications in C++ relatively quickly. The caveat to that is that initially, your coding style (which is typically procedural in nature for C developers) will not open up the full power of the C++ language. Over time however, as you learn about and embrace object-oriented programming principles, you will become a stronger C++ developer.
My recommendation, assuming you are working on and developing for a Windows-based computer, would be to download and install Microsoft's
Visual C++ Express Edition development product. It is free, yet has most of the basic capabilities of their more fully featured Visual Studio 2005 family of development tools. Hopefully, it will provide both a good starting point for learning more about developing applications for the Windows platform using C++, but also that experience will expand your capabilities as a developer in general, irrespective of the target platform you develop for in the future.
The link to the site at which you can obtain the Visual C++ Express Edition product is:
http://msdn.microsoft.com/vstudio/express/visualc/
I hope this helps you in your efforts, and best wishes in your future coding endeavors.
Sincerely,
Brett