What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

What Programming Language should i pick up (:

puxxe

Guest
Joined
Jan 15, 2010
Messages
48
so guys what programing language should i learn i've done a litttle in c++,
but ye someone tould me i should go to c# , well a big + if its general easy to learn becuse i got dyslexia h3h3 (:
 
Depends what you want to code, if you want to do anything related to Wow/HB learn Lua and C# = )
 
ye was thinking about that but also other games maybe?
is c# easier then c++ its a bit hard with dyslexia :(
 
Can't really say whether its hard to learn or not, i guess it depends on the person. With Dyslexia it will prolly be as challenging as any other language.
 
C++ is by far the most useful language to learn even if you progress onto something else simply because you'll have a much better understanding of how things work. My preferred language is C# followed by Java.
 
If you want to create general programs use C++. If you want to create bot's learn C#
 
You need to know whats going on! Before you even learn a language you need to learn the basics, C++ is super advanced and you should never grind through tutorials to learn it. I would recommend C# as a first language because of how much you can do with it without that much experience.
 
C++ is by far the most useful language to learn even if you progress onto something else simply because you'll have a much better understanding of how things work. My preferred language is C# followed by Java.

I agree that you need to know how things work (ie low level) but I don't agree that you can say C++ is the most useful language. If you are just doing it as a hobby why bother learning whats going on intricately? You can always do that later. Also I hate Java. IMO its like taking C# breaking its legs and cutting off its hand. The only thing Java has going for it is cross-platform capabilities.
 
There is more sample coe and tutorials out there for C# more than anything... folowed by VB then java id say any one of these would be fund to learn starting out
 
Learn real programing,
Do ASM
0101001001000101010000010100110000100000010100000101001001001111010001110101001001000001010011010100110101000101010100100101001100100000010000110100111101000100010001010010000001001001010011100010000001000010010010010100111001000001010100100101100100101110
 
Code:
.data
   count dw 0
   array dw 50,120,100,40
   arraysize = ($-array)/(TYPE array)
   sum1  dw 0
   sum2  dw 0

.code
start:
   mov ecx, count
   .while (ecx < arraysize)
      .if (array[ecx*2] < 100)
         mov ax, array[ecx*2]
         add sum1, ax
      .else
         mov ax, array[ecx*2]
         add sum2, ax
      .endif
      inc ecx
   .endw

There, thats all better now,

wow, that took me longer to write than i rember.
 
Thanks for all the good replys :) hehe and i will pickup c# atleast (: im glad that so many people wanted to help :)
 
Back
Top