View Poll Results: Which lang do u mostly code in

Voters
48. You may not vote on this poll
  • Assembly

    0 0%
  • C

    18 37.50%
  • C++

    29 60.42%
  • C#

    0 0%
  • Pascal

    0 0%
  • Perl

    0 0%
  • PHP

    0 0%
  • Forth

    0 0%
  • Java

    1 2.08%
  • Visual Basic

    0 0%

Thread: Which language do u mostly code in

  1. #1
    Registered User
    Join Date
    Aug 2001
    Posts
    46

    Smile Which language do u mostly code in

    Just poll for the lang u mostly code in.

  2. #2
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    In my last project, C++, in my current, Pascal. So, "Two of the above".
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

  3. #3
    Ecologist
    Join Date
    Aug 2001
    Location
    Utah.
    Posts
    1,291

    Re: Which language do u mostly code in

    Originally posted by MovingFulcrum
    Just poll for the lang u mostly code in.
    So, who wants to write the 'hello world' program
    in all of those languages? I want to see how
    the syntax differs from language to language..

    Staying away from General.

  4. #4
    the Corvetter
    Join Date
    Sep 2001
    Posts
    1,584
    I choose C. I'm going to start assembly now, too. I'm ready for the challenge of the most core language there is. But, I love C for software (Windows) programming.

    --Garfield
    1978 Silver Anniversary Corvette

  5. #5
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    Assembly
    Code:
    main:
        mov dx,hello	        ;Load the msg's address
        mov ah,9                ;Standard output function
        int 21h                 ;DOS call to dsplay AH
    	
        mov ax,04C00H           ;Exit code
        int 21h                 ;execute instruction in AX (Exit instruction)
    
    hello db 13,10,"Hello, World!",13,10,"$" ;the msg
    C
    Code:
    #include <stdio.h>
    
    int main(void)
    {
        printf("Hello, World!\n");
        return 0;
    }
    C++
    Code:
    #include <iostream.h>
    
    int main(void)
    {
        cout<<"Hello, World!"<<endl;
        return 0;
    }
    C#
    Code:
    using System;
    
    class MyClass
    {
        public static void Main(String[] args)
        {
            Console.Write("Hello, World!\n");
        }
    }
    Pascal
    Code:
       program Hello;
       begin     
          writeln ('Hello, world.')
       end.
    Perl
    Code:
    print "Hello, World!\n"
    PHP
    Code:
    <? echo "Hello, World!"; ?>
    Forth (AKA ugliest lang on the planet )
    Code:
    : hello
            begin
              true
            while
              ." Hello World "
            repeat
    ;
    hello
    Java
    Code:
    class HelloWorld 
    {
            public static void main (String args[]) 
            {
                     System.out.print("Hello World ");
            }
    }
    Visual Basic - create a form, add in a label, and change the caption to "Hello, World!"



    Well THAT was fun...

  6. #6
    Meow Pendragon's Avatar
    Join Date
    Sep 2001
    Location
    Swindon, UK
    Posts
    723
    Well, that clears *that* up.

    Well done that man!

    -Pen

  7. #7
    the Corvetter
    Join Date
    Sep 2001
    Posts
    1,584
    >> Forth (AKA ugliest lang on the planet ) <<

    Code:
    : hello
            begin
              true
            while
              ." Hello World "
            repeat
    ;
    hello
    That is some nasty looking code. The functionality doesn't even look...worth it.

    --Garfield
    1978 Silver Anniversary Corvette

  8. #8
    Back! ^.^ *Michelle*'s Avatar
    Join Date
    Oct 2001
    Posts
    568
    Which language do you guys think is the easiest? So far, I only know C++, a tinsy bit of CGI...btw, you guys forgot to include CGI, or is it the same as PHP? um... And I FINALLY succesfully upload a CGI file on the net without a error message showing up, yah! It took me like a half a year to figure out, haha! (I know I'm dumb, acutually I forgot to upload it in ASCII and sometimes I change the code and wrote in symbols without have "\" infront of it. I just realize how annoying it is to not have a compiler to tell you where something is wrong!

    Ok, I better shut up now, I reply like 4 threads today, yikes...

    And good job -Ken-, you know so many languages!
    Michelle (o^.^o)
    *Unique*
    Kaomoji House

  9. #9
    the Corvetter
    Join Date
    Sep 2001
    Posts
    1,584
    The easiest language?: Visual Basic by far.
    1978 Silver Anniversary Corvette

  10. #10
    A Banana Yoshi's Avatar
    Join Date
    Oct 2001
    Posts
    859
    To me, C++, C, and VB is my languages.
    Yoshi

  11. #11
    In The Light
    Join Date
    Oct 2001
    Posts
    598
    You had to ask!
    in school it was fortran, got any more punch cards
    after that came qbasic love that DOS
    then enter the 80's
    i was forced to do lisp because of AutoCAD.
    now just for fun and hopfully for a living someday it' C++ and ASM.
    Damn i feel old.
    M.R.

  12. #12
    Registered User Camilo's Avatar
    Join Date
    Oct 2001
    Posts
    78
    With a little help from Oskilian I learned VB (very easy), then a teacher from olympiads taught me C, now I am learning asm.



    Camilo
    'Going further'
    no, life is nice, just a girl fooling around, alcohol fixes everything.
    OH, I now have a High School Diploma and need of ron (drink)

  13. #13
    Former Member
    Join Date
    Oct 2001
    Posts
    955
    'milo: tell 'em how would you do it on Multimedia toolbook (that's DEFINETLY the worst language ever)

    oh, and you forgot:

    QBASIC
    Code:
    PRINT "Hello World!"
    C++ for Win32
    Code:
    #include <windows.h>
    
    int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
    {
    MessageBox(NULL,"Hello World!","Hello",MB_OK);
    return 0;
    }
    you know, I did all that on friday on a blackboard at school, it's funny that I found it here too! Camilo can testify to that.

    Oskilian
    Last edited by oskilian; 11-19-2001 at 09:38 PM.

  14. #14
    Registered User
    Join Date
    Oct 2001
    Posts
    375
    CGI can be done in many different languages. I prefer to use C for it.
    Allegro precompiled Installer for Dev-C++, MSVC, and Borland: http://galileo.spaceports.com/~springs/

  15. #15
    Scourfish
    Guest
    What? No Cobol? No Fortran?

    Sure, they may be dead languages, but so is Latin, and people still speak it.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Reviving my old scripting language.
    By suzakugaiden in forum Game Programming
    Replies: 4
    Last Post: 06-15-2006, 03:02 PM
  2. Replies: 1
    Last Post: 03-21-2006, 07:52 AM
  3. What language did they make Java in?
    By jverkoey in forum A Brief History of Cprogramming.com
    Replies: 17
    Last Post: 07-03-2005, 04:18 PM
  4. How to use asm code in c language
    By phijo in forum C Programming
    Replies: 5
    Last Post: 05-08-2004, 02:58 AM
  5. C better than C++? (POLL)
    By Lynux-Penguin in forum A Brief History of Cprogramming.com
    Replies: 28
    Last Post: 05-03-2002, 03:34 PM