+ 5
It seems like c++ is the hardest language .
4 Answers
+ 9
Conversely, to a C++ programmer, other languages seem hard.
+ 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.
+ 3
no programming language is actually hard, it's only the matter of time. c++ is very similar to java. keep going đđđ
+ 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!