Thread: pascal

  1. #1
    Registered User sentienttoaster's Avatar
    Join Date
    Nov 2002
    Posts
    79

    pascal

    I'm thinking about going into programming at college, and was wondering if I should learn pascal. I know that I will have to take a class on it, but is there any other reason that I should learn it???
    This has been a public service announcement from GOD.

    111 1111

  2. #2
    Registered User webturtle0's Avatar
    Join Date
    Nov 2002
    Posts
    76

    Re: pascal

    Originally posted by sentienttoaster
    I'm thinking about going into programming at college, and was wondering if I should learn pascal. I know that I will have to take a class on it, but is there any other reason that I should learn it???
    Learn it before or during college?
    "Yo"

  3. #3
    Registered User adamviper's Avatar
    Join Date
    Nov 2002
    Posts
    132
    learn it before so if you take c++ classes you wont put pascal into a c++ program

  4. #4
    Seven years? civix's Avatar
    Join Date
    Jul 2002
    Posts
    605
    Pascal seems to be a pretty easy language to learn..
    It's one of the older ones but hey... I can code a smaller program faster in pascal than I would be able to in C++..

    I'm only learning it for auxilary purposes..and to add another language to my infrantry.
    Last edited by civix; 12-05-2002 at 11:46 AM.
    .

  5. #5
    S Sang-drax's Avatar
    Join Date
    May 2002
    Location
    Göteborg, Sweden
    Posts
    2,072
    The syntax is clearer but less versatile than C++'s.
    Code:
    for I := 1 to 5 do
    begin
    
    end
    
    for (i=1;i<=5;++i)
    {
    
    }
    Last edited by Sang-drax : Tomorrow at 02:21 AM. Reason: Time travelling

  6. #6
    Registered User
    Join Date
    Jan 2002
    Posts
    559
    Delphi's an IDE for Object Pascal. Kind of like robust VB, good database support. It seems to be much more popular in Europe than the US, even though it's the main programming language where I work.
    Truth is a malleable commodity - Dick Cheney

  7. #7
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    At home, or for private customers, if I'm doing anything with a database, I use Delphi. IU often knock up prototypes in Delphi as well, as I can remember the syntax better than VB.
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

  8. #8
    The structure of pascal is also very simular to C. So the move from either pascal->C or C->pascal is extremly painless.

    >>The syntax is clearer but less versatile than C++'s.

    Actually, I found many areas of pascal to be cloudier than their C equivelants. Although, yes, there are some more intuitive examples.

    >>I can code a smaller program faster in pascal than I would be able to in C++

    ... Its been years since I've written a pascal program. With all of my custom designed C related tools, I'd actually find it much faster to bang something out in C than I would in pascal. But thats just where I'm at now, not a reflection on the language.
    "There's always another way"
    -lightatdawn (lightatdawn.cprogramming.com)

  9. #9
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    Pascal is a generally fun language. I actually rarely use it for anything, but that is just because C has really grown on me. And C++ is just so painless. And although pascal may not appear to have much to offer over C/C++ I can say that it usually is easier to read and write pascal then it is in C/C++.

  10. #10
    Just a Member ammar's Avatar
    Join Date
    Jun 2002
    Posts
    953
    The first time I started learning a programming language was in college, and it was C++( we don't learn Pascal ), and I didn't have any difficulty with it.
    If you have time, learn Pascal or C++, it will help you, but if you don't it won't be difficult to you start at college.
    none...

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Pascal
    By cogeek in forum Tech Board
    Replies: 32
    Last Post: 11-20-2004, 04:19 AM
  2. C & Pascal Help
    By Dragon227Slayer in forum C Programming
    Replies: 4
    Last Post: 12-01-2003, 09:40 AM
  3. Compares C++ and Pascal
    By Jaguar in forum A Brief History of Cprogramming.com
    Replies: 13
    Last Post: 07-19-2002, 11:28 AM
  4. Pascal Compiler
    By (TNT) in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 04-09-2002, 12:57 AM
  5. Pascal "with()" in C++
    By larry in forum C++ Programming
    Replies: 3
    Last Post: 09-27-2001, 02:04 PM