+ 1
What the difference between the c and the c++, and which should i begin with
the c and the c++ language
2 odpowiedzi
+ 2
Hi Mohamed,
I will start with your second question. Which language C or C++ should you start with depends on what you want to do, which kind of task do you want to solve. Both are very powerful general purpose languages. With them you can do what many other languages do but that comes with a price, and is the amount of code you will need to write.
Now, concerning their differences. Roughly speaking C++ is a super-set of C. In fact, C is much older than C++ and was developed together with Unix operational system. C is a procedural language. C++ improves over C by providing Object orientated and generic programming. If you need to develop large applications, C++ would be more suitable. Meanwhile, if you need low level control, C is good.
So, it really depends on what you want to achieve.
There is much more. But this is the basics.
+ 1
thanks allot