0
What's the main differences between C++ and C# ?
I am learning both of C++ and C# but I need to know when to write my code in C++ and when to write it in C# , In which cases each of them is preferred?
2 ответов
+ 8
C/C++ are used to write huge softwares of all kinds, but when it comes to .Net and Windows, many Windows-only apps are written in C#, since the language itself was developed by Microsoft. Cross-platform apps are typically C++.
However, C# is also widely used at industry-level: Automation, machinery, etc.
+ 1
I got it, thank you!