It seems like c++ is the hardest language . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

It seems like c++ is the hardest language .

10th Feb 2017, 1:47 AM
Ammar
Ammar - avatar
4 Answers
+ 9
Conversely, to a C++ programmer, other languages seem hard.
10th Feb 2017, 3:31 AM
Hatsy Rei
Hatsy Rei - avatar
+ 4
You could make a case that it's the hardest language that SoloLearn has a course for, but I'd argue that the hardest practical programming language to learn is assembly. Here's an x86 Intel assembly program for "Hello, World": section .text global _start start: mov ecx, msg mov edx, len mov eax, 4 mov ebx, 1 int 0x80 mov eax, 1 int 0x80 section .data msg db 'Hello, World!', 0xa len equ $ - msg If you want to make it even harder, try an esoteric language, like Whitespace or Brainf**k.
10th Feb 2017, 2:54 AM
DaemonThread
DaemonThread - avatar
+ 3
no programming language is actually hard, it's only the matter of time. c++ is very similar to java. keep going 👍👍👍
10th Feb 2017, 2:52 AM
Mehrad Aria
Mehrad Aria - avatar
+ 1
C++ is a relatively advanced language. I t's very similar to our thoughts. I learned a little assembly language and found it so abstract and confusing!
10th Feb 2017, 4:29 PM
yuang
yuang - avatar