+ 3
What are the differences between C++ and C#?
3 ответов
+ 6
Some high level differences are
1. C# is considered as a high level language while C++ is considered as a low level language with high level functions.
2. Upon compiling C++ can generate both managed and unmanaged code whereas C# can generate only managed code(Intermediate language).
3. In C# Memory is automatically managed by the Garbage collector. In C++ memory allocated in heap must be explicitly deleted.
+ 1
C # was also a response from Microsoft having a language of its own to deal with Java since both are contemporary but C # came out a year later.
0
Hello Zahara...