+ 1

Whats the difference between C,C# and C++?

13th Nov 2016, 10:06 AM
Chayserie Moises
Chayserie Moises - avatar
5 Respuestas
+ 2
Also, C# runs off of the .NET framework, making it useful for Windows based programs.
13th Nov 2016, 10:39 AM
Keto Z
Keto Z - avatar
+ 2
Not necessarily. Each language has it's own benefits, the most recent isn't always the best. C++ is actually in higher demand in the market.
13th Nov 2016, 11:19 AM
Keto Z
Keto Z - avatar
+ 1
C is not object orienting. So you cannot manage class. There is no std namespace so you cannot use cout or cin. These things are in C++. The most differece between them is the thing that in C you cannot use class. you have to do everything through method. C# is based on C++ in terms of sintax but is very powerfull cause of API. There are many libraries that allows to you to create any graphical application
13th Nov 2016, 10:31 AM
Matteo Tardelli
Matteo Tardelli - avatar
0
C -- Basic. No object oriented ↓ C++ -- based on C. Object oriented. But no garbage collection. and pretty old. ↓ C# -- Based on C++. Developed by Microsoft, for their .NET framework. Has garbage collection and all the features of currently using OOP languages.
13th Nov 2016, 10:51 AM
Nagendra Prajwal
Nagendra Prajwal - avatar
0
thank you for the info..So C# is the best of the three..
13th Nov 2016, 11:17 AM
Chayserie Moises
Chayserie Moises - avatar