From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 109fba,baaf5f793d03d420 X-Google-Attributes: gid109fba,public X-Google-Thread: 103376,97188312486d4578 X-Google-Attributes: gid103376,public X-Google-Thread: 1014db,6154de2e240de72a X-Google-Attributes: gid1014db,public X-Google-Thread: 10db24,2243248c6a74be5 X-Google-Attributes: gid10db24,public From: rav@goanna.cs.rmit.edu.au (++ robin) Subject: Re: Should I learn C or Pascal? Date: 1996/07/25 Message-ID: <4t6i84$lbu@goanna.cs.rmit.edu.au>#1/1 X-Deja-AN: 170060964 references: <4sord0$l0k@solaria.cc.gatech.edu> organization: Comp Sci, RMIT, Melbourne, Australia newsgroups: comp.lang.c,comp.lang.c++,comp.lang.ada,comp.edu nntp-posting-user: rav Date: 1996-07-25T00:00:00+00:00 List-Id: jtbell@presby.edu (Jon Bell) writes: > Robert Dewar wrote: >> You cannot express algorithms unless you >>use a language to express them in, and for my taste, a well chosen >>programming language is as good choice as anything. >For *my* taste, a real programming language is *better*, because you can >test the correctness of your solution by executing it. Try *that* with >pseudocode or data flow diagrams! :-) You can test the correctness of a solution with the *algorithm*, whether it's expressed in flowchart, pseuducode, etc form. It's considered better to get the design correct *before* committing the design into detailed code. Re-designing the detailed code tends to be more expensive than re-designing the algorithm.