473,384 Members | 1,854 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,384 software developers and data experts.

Educational Software

Does anyone knows any educational software aimmed to help people learn
about programming?

Nov 8 '05 #1
11 2658
In comp.lang.c Gaijinco <ga******@gmail.com> wrote:
Does anyone knows any educational software aimmed to help people learn
about programming?


Sure. Your friendly C or C++ compiler, in conjunction with a good
reference such as K&R2, is a fine way to learn about programming.

If you're looking for a general introduction to programming, I'm
afraid you've asked your question in the wrong place(s).
comp.programming may be appropriate.

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Nov 8 '05 #2
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote:
In comp.lang.c Gaijinco <ga******@gmail.com> wrote:
Does anyone knows any educational software aimmed to help people learn
about programming?


Sure. Your friendly C or C++ compiler, in conjunction with a good
reference such as K&R2, is a fine way to learn about programming.


Beg to differ. It's a fine way to learn about programming in C if you
already know how to program. C is not suitable as a first language; C++
even less. Start with a language that will teach you discipline, such as
Pascal.

Richard
Nov 9 '05 #3

Richard Bos wrote:
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote:
In comp.lang.c Gaijinco <ga******@gmail.com> wrote:
Does anyone knows any educational software aimmed to help people learn
about programming?


Sure. Your friendly C or C++ compiler, in conjunction with a good
reference such as K&R2, is a fine way to learn about programming.


Beg to differ. It's a fine way to learn about programming in C if you
already know how to program. C is not suitable as a first language; C++
even less. Start with a language that will teach you discipline, such as
Pascal.


TROLL ALERT.
Jonathan

Nov 9 '05 #4
Jonathan Mcdougall said:

Richard Bos wrote:
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote:
> In comp.lang.c Gaijinco <ga******@gmail.com> wrote:
>
> > Does anyone knows any educational software aimmed to help people
> > learn about programming?
>
> Sure. Your friendly C or C++ compiler, in conjunction with a good
> reference such as K&R2, is a fine way to learn about programming.


Beg to differ. It's a fine way to learn about programming in C if you
already know how to program. C is not suitable as a first language; C++
even less. Start with a language that will teach you discipline, such as
Pascal.


TROLL ALERT.


Good. If we must have trolls, I suppose they should at least keep awake.

Seriously, what makes you think Richard Bos is a troll? His advice to learn
programming using a language designed as a teaching language (such as
Pascal) is spot on. Sure, you wouldn't use Pascal in the real world (Delphi
aside for a minute), but then you wouldn't sit in a classroom in the real
world either - and yet the classroom makes sense in an educational context.
So does Pascal. Let people move on to C when they have learn a bit about
how to program.
--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Nov 9 '05 #5
Richard Bos wrote:
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote:
In comp.lang.c Gaijinco <ga******@gmail.com> wrote:
Does anyone knows any educational software aimmed to help people learn
about programming?


Sure. Your friendly C or C++ compiler, in conjunction with a good
reference such as K&R2, is a fine way to learn about programming.


Beg to differ. It's a fine way to learn about programming in C if you
already know how to program. C is not suitable as a first language; C++
even less. Start with a language that will teach you discipline, such as
Pascal.

Richard


The book of choice for learning C++ is _Accelerated C++_ by Koenig and
Moo. See the FAQ for more suggestions:

http://www.parashift.com/c++-faq-lit...learn-cpp.html

Cheers! --M

Nov 9 '05 #6
Richard Heathfield wrote:
Jonathan Mcdougall said:
Richard Bos wrote:
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote:

In comp.lang.c Gaijinco <ga******@gmail.com> wrote:

> Does anyone knows any educational software aimmed to help people
> learn about programming?
Sure. Your friendly C or C++ compiler, in conjunction with a good
reference such as K&R2, is a fine way to learn about programming.
Beg to differ. It's a fine way to learn about programming in C if you
already know how to program. C is not suitable as a first language; C++
even less. Start with a language that will teach you discipline, such as
Pascal. TROLL ALERT.


Good. If we must have trolls, I suppose they should at least keep awake.

Seriously, what makes you think Richard Bos is a troll? His advice to learn
programming using a language designed as a teaching language (such as
Pascal) is spot on.


Agreed.
Sure, you wouldn't use Pascal in the real world (Delphi
aside for a minute),
Actually, there have been several Pascal implementations targeting
embedded systems which I and others have used very successfully. I've
also used HP Pascal for some significant and very successful projects.

All these Pascals had extensions which we used, but then the same goes
for C. I *prefer* C, but within at least certain limitations Pascal can
and is used in the real world.
but then you wouldn't sit in a classroom in the real
world either - and yet the classroom makes sense in an educational context.
So does Pascal.
Pascal can also make sense in the real world.
Let people move on to C when they have learn a bit about
how to program.


This I agree with.
--
Flash Gordon
Living in interesting times.
Although my email address says spam, it is real and I read it.
Nov 9 '05 #7
In article <dk**********@nwrdmz02.dmz.ncs.ea.ibs-infra.bt.com>,
Richard Heathfield <in*****@invalid.invalid> wrote:
[OT]
Sure, you wouldn't use Pascal in the real world (Delphi
aside for a minute),


I used to work for a company that did a major project in Pascal.
They did end up making compiler extensions for the equivilent of
include files (including precompilation), and (IIRC) another extension to
convert an integer address into a pointer [for direct device access].
They added in a mutex library call.

The header files bit was an important extension for project management
purposes.

Most of the developers never needed direct device access.
The mutex call was hidden in a message passing queuing / dequeing
part of operations, so most of the developers never saw that level.

Thus, from the perspective of the developers, there was a minor wart
to include header files, and the rest of the changes were pretty much
transparent... apparently Just Plain Pascal.
--
Is there any thing whereof it may be said, See, this is new? It hath
been already of old time, which was before us. -- Ecclesiastes
Nov 9 '05 #8
"Jonathan Mcdougall" <jo***************@gmail.com> wrote:
Richard Bos wrote:
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote:
In comp.lang.c Gaijinco <ga******@gmail.com> wrote:

> Does anyone knows any educational software aimmed to help people learn
> about programming?

Sure. Your friendly C or C++ compiler, in conjunction with a good
reference such as K&R2, is a fine way to learn about programming.


Beg to differ. It's a fine way to learn about programming in C if you
already know how to program. C is not suitable as a first language; C++
even less. Start with a language that will teach you discipline, such as
Pascal.


TROLL ALERT.


Care to explain what you base that exclamation on?

Richard
Nov 10 '05 #9
No, I'm thinking more about a program to teach you how to program.

Nov 10 '05 #10
In article <43****************@news.xs4all.nl>,
Richard Bos <rl*@hoekstra-uitgeverij.nl> wrote:
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote:
In comp.lang.c Gaijinco <ga******@gmail.com> wrote:
> Does anyone knows any educational software aimmed to help people learn
> about programming?


Sure. Your friendly C or C++ compiler, in conjunction with a good
reference such as K&R2, is a fine way to learn about programming.


Beg to differ. It's a fine way to learn about programming in C if you
already know how to program. C is not suitable as a first language; C++
even less. Start with a language that will teach you discipline, such as
Pascal.


IMO Pascal may appear to "teach discipline" but if we're really
going to compare it against C, it really is a wash: people write
programs and as many of the same issues can be used in instruction
of both. That said, K&R2 has some unique aspects, and can certainly
be used in conjunction with whatever other resources are being used
for C programming.
--
Greg Comeau / Celebrating 20 years of Comeauity!
Comeau C/C++ ONLINE ==> http://www.comeaucomputing.com/tryitout
World Class Compilers: Breathtaking C++, Amazing C99, Fabulous C90.
Comeau C/C++ with Dinkumware's Libraries... Have you tried it?
Nov 11 '05 #11
In article <dk**********@nwrdmz02.dmz.ncs.ea.ibs-infra.bt.com>,
Richard Heathfield <in*****@invalid.invalid> wrote:
you wouldn't use Pascal in the real world (Delphi
aside for a minute),
But many people do.
but then you wouldn't sit in a classroom in the real
world either - and yet the classroom makes sense in an educational context.
Have to disagree here. I mean, sure, lots of "classroom" is artificial,
but not all is.
So does Pascal. Let people move on to C when they have learn a bit about
how to program.


Maybe.
--
Greg Comeau / Celebrating 20 years of Comeauity!
Comeau C/C++ ONLINE ==> http://www.comeaucomputing.com/tryitout
World Class Compilers: Breathtaking C++, Amazing C99, Fabulous C90.
Comeau C/C++ with Dinkumware's Libraries... Have you tried it?
Nov 11 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Fabrice H | last post by:
hello I have QT 3.1.1 educational on my computer (Win XP) I tried to install several version of pyQt (PyQt edu 3.13 Edu, PyQt edu 3.6, PyQT non-commercial 4.13, but I still can't import qt module....
3
by: Dave | last post by:
Hi, I'm trying to obtain the DB2 server/client apps and development tools for educational use (ie, for free). However, I cannot seem to find out how to register/download for DB2 products for...
11
by: Gaijinco | last post by:
Does anyone knows any educational software aimmed to help people learn about programming?
102
by: Xah Lee | last post by:
i had the pleasure to read the PHP's manual today. http://www.php.net/manual/en/ although Pretty Home Page is another criminal hack of the unix lineage, but if we are here to judge the quality...
3
by: kanelucas | last post by:
Hello! I'm a management major doing some research on educational video games: Just wanted to ask if you have any good sources/references/insights/anything interesting about video games being used...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.