Are c# and c++ equally hard? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

Are c# and c++ equally hard?

first of all, im not a begginner, i already know python and the 3 web languages and im good at them. i wanted to test one of the c languages but i dont know which is harder, or are they the same in terms of difficuly level? because they are both evolutions of c i would think they are very similar but i dont know. what do you guys think?

11th Oct 2017, 8:24 PM
TheLegend27
TheLegend27 - avatar
3 Antworten
+ 6
A list of differences between the two languages include: Size of binaries: We mentioned that the two languages are compiled languages that turn your code into binary files. C# has a lot of overhead and libraries included before it will compile. C++ is much more lightweight. Therefore, C# binaries are much larger after it compiles compared to C++. Performance: C++ is widely used when higher level languages are not efficient. C++ code is much faster than C# code, which makes it a better solution for applications where performance is important. For instance, your network analysis software might need some C++ code, but performance is probably not a huge issue for a standard word processing application coded in C#. Garbage collection: With C#, you don’t have to worry much about garbage collection. With C++, you have no automatic garbage collection and must allocate and deallocate memory for your objects. Platform target: C# programs are usually targeted towards the Windows operating system, although Microsoft is working towards cross-platform support for C# programs. With C++, you can code for any platform including Mac, Windows and Linux. Types of projects: C++ programmers generally focus on applications that work directly with hardware or that need better performance than other languages can offer. C++ programs include server-side applications, networking, gaming, and even device drivers for your PC. C# is generally used for web, mobile and desktop applications. Compiler warnings: C++ will let you do almost anything provided the syntax is right. It’s a flexible language, but you can cause some real damage to the operating system. C# is much more protected and gives you compiler errors and warnings without allowing you to make some serious errors that C++ will allow. hope u understand
11th Oct 2017, 9:03 PM
Scooby
Scooby - avatar
+ 1
c# developed by Microsoft and is high level language but c or c++ are basic language and more powerful
11th Oct 2017, 8:34 PM
Hamid Reza Gholami Boroujeni
Hamid Reza Gholami Boroujeni - avatar
0
C++ is harder in the terms that you have to take a lot of things in your own hand like Scooby mentioned garbage collection and you really have to know what you're doing, where in other programming languages something is not allowed because it could cause damage or get out of hand, in c++ it can be allowed
12th Oct 2017, 6:16 AM
‎ɐısıօլɐ
‎ɐısıօլɐ - avatar