Login Register






There was a very particular style of DDOS attack just now, it was mitigated.
Thread Rating:
  • 0 Vote(s) - 0 Average


Easiest & Hardest Programming Language? filter_list
Author
Message
RE: Easiest & Hardest Programming Language? #31
The hardest is C++ in my opinion. But I actually find VB.NET harder than C++. C++ seems easier although I am just beginning.

wait Brainfuck is a computer language lol. WTF that looks insane!!
(This post was last modified: 12-28-2012, 08:26 PM by Jager.)
It wasn't raining when Noah built the ark.
-Howard Ruff

Then I saw it, I saw a mom who would die for her son, a man who would kill for his wife, a boy, angry & alone, laid out in front of him the bad path. I saw it & the path was a circle, round & round. So I changed it.
- Joe from Looper

Reply

RE: Easiest & Hardest Programming Language? #32
Through my experience, mine goes like this(Easiest to hardest):
Python
Java
HTML
CSS
PHP
C++

Reply

RE: Easiest & Hardest Programming Language? #33
All web languages are easy if you are motivated. Python and Basic are the easiest in the PC world. The hardest is Assembly but there are many syntax the easiest for me is Intel syntax and the hardest is AT&T. C, C++ and Java are medium for me.

Reply

RE: Easiest & Hardest Programming Language? #34
What. Intel and ATT syntax are representations of the same thing. If you think ones harder than the other, you missed a huge part of what assembly is. Different architectures are easier/harder to learn, but ATT/Intel both refer to x86.

Reply

RE: Easiest & Hardest Programming Language? #35
HTML is not a programming language. It is just a markup language. I'd say the easiest is VB.NET

Java and C++ are the most complex.

Reply

RE: Easiest & Hardest Programming Language? #36
What do you mean by "online language" and as the above member mentions, anyone who mentioned HTML is wrong, because HTML is not an official programming language. I would say Batch is the easiest, unless you want to consider things like Smallbasic and other really dumb languages. As for the hardest, I would say it's a tossup between C and C++. Why? Lots of people say C is easy but I've seen very few people who can actually write good C code. It's less forgiving than C++ on a few things. C++ on the other hand is a larger language; ton's of features, datatypes, etc...
-- cxS

[ Haskell/.NET/C/C++ - Software Engineer ]

Reply

RE: Easiest & Hardest Programming Language? #37
Probably VB.Net but Python is really easy too !

Reply

RE: Easiest & Hardest Programming Language? #38
(03-11-2013, 12:37 AM)w00t Wrote: What. Intel and ATT syntax are representations of the same thing. If you think ones harder than the other, you missed a huge part of what assembly is. Different architectures are easier/harder to learn, but ATT/Intel both refer to x86.

There is big different in the code. For example the mov instruction. I haven't say that AT&T is impossible but the commands are a little bit harder to explain = little bit harder to understand. Also there is a lot more material for Intel syntax than AT&T

Reply

RE: Easiest & Hardest Programming Language? #39
HTML means hypertext markup language, meaning it's not a programming language.

EDIT: 2/10 for rustling my jimmies

Reply

RE: Easiest & Hardest Programming Language? #40
AT&T syntax and Intel syntax represent the same thing, the difference being whether the operator or the operand should be provided first.


Intel syntax, operand first:
Code:
mov ax, 5 ; AX = 0x0005

AT&T syntax ,of the exact same operation , operator first, explicitly state how much memory is being transferred:
Code:
movw 5, %ax ; load up AX with 5, explicitly stating that 5 is a word and so is AX

Reply







Users browsing this thread:






This forum uses Lukasz Tkacz MyBB addons.