Results 1 to 9 of 9

Thread: What sup with program languages

  1. #1
    Junior Member
    Join Date
    Sep 2002
    Posts
    8

    Lightbulb What sup with program languages

    [gloworange]wat sup with programming languages[/gloworange]
    Wat is the best programing language is C++ or Visual Basic
    im used to using C++ but some say Visual Basic is better Somebody out there help me out
    The Many Signatures Of Me[gloworange]Moses Anderson[/gloworange]Moses Anderson [shadow]Moses Anderson[/shadow]

  2. #2
    Senior Member
    Join Date
    Aug 2002
    Posts
    310
    VB isn't better than C++ by any stretch of the imagination,unless you take into account that it's pretty well idiot proof.VB's much easier to learn,but there's not a whole helluva lot you can do with it compared to C++,but if you're looking for pure simplicity,VB's the way to go.

    Also,no offense,but questions similar to this get posted about once a week.If you search the some of the older posts,you'll find some more in depth debates on what programming language is the best.
    [shadow]I don\'t believe in anarchy.If you\'re not smart enough to beat the system it\'s your problem. [/shadow]


  3. #3
    Senior Member
    Join Date
    Oct 2001
    Posts
    872
    It depends. I (used to) program in C++ till I started taking a Java programming class (I'm trying not to program in C++ so I won't forget what I learn in Java). But I highly reccomend C++. I've also tried VB, and it's, meh, well a bit "englishy" if you know what I mean. And I've heard that it gets you into bad habits when trying to learn another language after fully learning VB - I never got too far with VB to tell.

    C++, though, I'd say is probably a more versitile language, and may help you lots when/if you get into Linux.

    But, mind you there ARE more programming languages out there than just C++ and VB. And each have gurus of their own, saying that their programming language is superior to all others. I guess you'll just have to pick one, and set your mind on it.
    ...This Space For Rent.

    -[WebCarnage]

  4. #4
    what the members said up top of this post VB is really easy to learn honest i read a few tuts looked at some source and i was a pretty darn good VB programer. I would say c++ but i dont write c++ much i write just plain C. Hope that helps

  5. #5
    () \/V |\| 3 |) |3\/ |\|3G47|\/3
    Join Date
    Sep 2002
    Posts
    744
    Like we've been saying recently...c++ is the way to go if you want to go far. C++ is a true "higher level" language. VB is fine, too. It's a lot of fun and a good place to start. A lot of other c programers I know started out with it, as did I. But, honestly, you need to make up your own mind. I know for me, after a little over a year in VB, I started c++, and immediately I felt right at home. It was love at first sight. Try them all and do what feels best for you.

    These are, of course, just my silly little humble opinions! :-)

    Go Finland!
    Deviant Gallery

  6. #6
    i have programmed in fortran ,java,c,c++ and asm, the best programming language among these is c++ (while asm is the most powerful one).
    after learning c++ you will find out that other programming languages are realy similar to c++ for instance perl(for web based programming) ....
    the file attached holds some cool links to useful resources for c/c++ programmers i thought it might help!
    by the way i hate vb it "sucks"

  7. #7
    Senior Member
    Join Date
    Nov 2001
    Posts
    109

    Re: What sup with program languages

    Originally posted here by burnbythee
    [gloworange]wat sup with programming languages[/gloworange]
    Wat is the best programing language is C++ or Visual Basic
    im used to using C++ but some say Visual Basic is better Somebody out there help me out
    That's like asking what is the best car. There is a reason why there are so many programming languages out there. No one language is better than all the rest. There are many different reasons why you may choose one language over the other, there are always comprimises.

    VB is great for simple windows API - but it's not portable to any other OS. It gets really messy when doing a big project, you do not have very powerful features (no pointers, etc).

    C/C++ were designed as high level programming languages with low level features. C was intended to be used to program Unix, almost unrestricted access to pointers, and quite a bit of low level operations such as bit rotations and shifts. You can do almost anything with C/C++, but it's not without it's quirks.

    Sometimes interpeted languages are the best choice for a project, usually for portability reasons. Perl, PHP and Java are all examples of interpeted languages. The major disadvantage is speed.

    Assembler is probably the most powerful, but most tedious language to learn. Every high level language, compiled or interpeted is converted to assembler before it is put into binary. Assembler is great for program speed and nessary to use in many parts of OS design, and drivers in windows. However, it is very tedious and coding time is probably 100 times longer than programming in a high level language. Major disadvantage is that every processor has their own assembler langauge.
    Furthermore each assembler has their own directives and names for each instruction - making portablility extremely difficult.

    That was just a basic overview, there are literly hundreds of languages out there - they each have their own advantages and disadvanteges. So there is absolutly no best langauge out there.

    --------------------

    Secondly, the languages you know doesn't make the programmer - but how well you can program. Good design is the most important aspect of a program, regardless of the language.

  8. #8
    Senior Member
    Join Date
    Jul 2001
    Posts
    143
    Any well trained Computer Scientist will tell you that the "best" programming language is the one that gets your particular task done in the way you want it done. Example: if you want a real quick prototype program, then VB might just be what you want; if you want a high degree of control of the data types and algorithms involved, then maybe C++ is a better choice for you (or maybe even C if you aren't concerned with object oriented programming).

    So, what is the answer? The answer is come up with a list of thing you want your program to do really well, then do some research on some different programming languages and find which one matches you needs best, because once you learn programming in one language, picking up another is nothing more than learning syntax and semantics.

    Regards,
    Wizeman
    \"It\'s only arrogrance if you can\'t back it up, otherwise it is confidence.\" - Me

  9. #9
    Ninja Code Monkey
    Join Date
    Nov 2001
    Location
    Washington State
    Posts
    1,027
    Opinions are rampant....but both languages are good. They are different tools for different jobs.
    "When I get a little money I buy books; and if any is left I buy food and clothes." - Erasmus
    "There is no programming language, no matter how structured, that will prevent programmers from writing bad programs." - L. Flon
    "Mischief my ass, you are an unethical moron." - chsh
    Blog of X

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •