473,387 Members | 1,504 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,387 software developers and data experts.

What does BCPL stand for?

What does BCPL stand for is it one language or a family of languages.
My bust guess it the B C Programming Languages. But that is just a
short in the dark. I am also not sure what languages fall into this
family I think sometimes Java is included and maybe other times it is
not?
Nov 14 '05 #1
5 3040
On 1 Apr 2005 14:28:52 -0800, Jo************@hotmail.com (John
Creighton) wrote:
What does BCPL stand for is it one language or a family of languages.
My bust guess it the B C Programming Languages. But that is just a
short in the dark. I am also not sure what languages fall into this
family I think sometimes Java is included and maybe other times it is
not?


It stands for Before C Programming Language ;-)

More seriously, look here:
http://c2.com/cgi/wiki?BcplLanguage

--
Al Balmer
Balmer Consulting
re************************@att.net
Nov 14 '05 #2
On 1 Apr 2005 14:28:52 -0800, in comp.lang.c ,
Jo************@hotmail.com (John Creighton) wrote:
What does BCPL stand for is it one language or a family of languages.
google is your friend.
My bust guess it the B C Programming Languages.


nope!

--
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.ungerhu.com/jxh/clc.welcome.txt>

----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Nov 14 '05 #3
Alan Balmer wrote:
(John Creighton) wrote:
What does BCPL stand for is it one language or a family of
languages. My bust guess it the B C Programming Languages. But
that is just a short in the dark. I am also not sure what
languages fall into this family I think sometimes Java is
included and maybe other times it is not?


It stands for Before C Programming Language ;-)


Dang. Beat me to it.

--
Some useful references about C:
<http://www.ungerhu.com/jxh/clc.welcome.txt>
<http://www.eskimo.com/~scs/C-faq/top.html>
<http://benpfaff.org/writings/clc/off-topic.html>
<http://anubis.dkuug.dk/jtc1/sc22/wg14/www/docs/n869/> (C99)
<http://www.dinkumware.com/refxc.html> (C-library}
<http://gcc.gnu.org/onlinedocs/> (GNU docs)

Nov 14 '05 #4
Al Balmer
"> It stands for Before C Programming Language ;-)"

"Christopher Strachey designed CPL (CplLanguage), which begat BCPL,
which begat B (BeeLanguage), which begat C (CeeLanguage), which begat
C++ (CeePlusPlus), which begat Java (JavaLanguage), which begat C#
(CsharpLanguage), ..."
From: http://c2.com/cgi/wiki?BcplLanguage

"One of the key ideas was to make space efficiency, as well as time
efficiency, a fundamental criterion. The vehicle for achieving this
goal was to use a systems implementation language from the BCPL family
rather than LISP. (Initially, MAPLE was implemented in B on a Honeywell
computer but soon the C language became the obvious widely-available
implementation language.)"
From: http://www.scg.uwaterloo.ca/SCG/history.html

"Most systems programming today is done in the BCPL family of
languages, which includes B, Bliss, and C. The beauty of these
languages is the modest cost with which they were able to take a great
leap forward from assembly language."
From:
http://www.db.informatik.uni-kassel..../mod3-int.html

"C# / .NET is not the first language of it type. It's been developed
with the experience obtained from Java, C++, COM/DCOM/ActiveX, Visual
Basic, and others. As such it has learned from the pitfalls of those
languages. For reference C++ is a culmination of the experience that
came out of SmallTalk and the BCPL-family of languages (C++ is the 4th
incarnation of the BCPL-family: BCPL, B, C, and C++)."
From:
http://www.codeguru.com/forum/printt...4&page=2&pp=15

Well, I had read on the web before that most common languages like C
C++ and Java are essentially the same and part of the BCPL family. I
don't think Java is usally included as part of this family. I think
usually just CPL BCPL B C. I think it is common to reffere to a family
of languages by mentioning just one language in it. I think this is a
rather vauge and misleading way to talk about languages. Anyway, the
following diagram should better explain the relationship between
languages:
http://faramir.rug.ac.be/courses/soo.../histlang.html
Looking at the diagram it is odd that I read that Paskel and Modula are
part of the ALGO family and B and C are part of a lower level family
(BCPL) and Lisp is at the opposite extreme. How can someone not
directly in the computer science field intelligently right about this
stuff when the experts don't seem to keep it straight.

Nov 14 '05 #5

On Sat, 1 Apr 2005 Jo************@hotmail.com wrote:

Al Balmer
"> It stands for Before C Programming Language ;-)"
(Note the winky ;-) and the date Al posted his response. BCPL actually
stands for "Basic" or "Bootstrap" CPL, where CPL stands for "Combined
Programming Language," since two universities collaborated in its design
(according to Wikipedia).)
"Christopher Strachey designed CPL (CplLanguage), which begat BCPL,
which begat B (BeeLanguage), which begat C (CeeLanguage), which begat
C++ (CeePlusPlus), which begat Java (JavaLanguage), which begat C#
(CsharpLanguage), ..."
From: http://c2.com/cgi/wiki?BcplLanguage
True.
"One of the key ideas was to make space efficiency, as well as time
efficiency, a fundamental criterion. The vehicle for achieving this
goal was to use a systems implementation language from the BCPL family
rather than LISP. (Initially, MAPLE was implemented in B on a Honeywell
computer but soon the C language became the obvious widely-available
implementation language.)"
From: http://www.scg.uwaterloo.ca/SCG/history.html
True, although today there do exist Lisp-like ("functional programming")
languages with speeds comparable to C.
"Most systems programming today is done in the BCPL family of
languages, which includes B, Bliss, and C. The beauty of these
languages is the modest cost with which they were able to take a great
leap forward from assembly language."
From:
http://www.db.informatik.uni-kassel..../mod3-int.html
True, but note that "these days" seems to refer to the mid-1980s,
before the ISO C Standard was written. I doubt more than a hundred
people worldwide do anything with B these days.
"C# / .NET is not the first language of it type. It's been developed
with the experience obtained from Java, C++, COM/DCOM/ActiveX, Visual
Basic, and others. As such it has learned from the pitfalls of those
languages. For reference C++ is a culmination of the experience that
came out of SmallTalk and the BCPL-family of languages (C++ is the 4th
incarnation of the BCPL-family: BCPL, B, C, and C++)."
From:
http://www.codeguru.com/forum/printt...4&page=2&pp=15
True, though I doubt C++ takes much of anything from SmallTalk. IIRC,
the object model isn't even remotely similar. But anyone who talks about
experiences obtained from Visual Basic can't be expected to get OO history
right. ;-)
Well, I had read on the web before that most common languages like C
C++ and Java are essentially the same
Hah! False.
and part of the BCPL family.
True, but of course Java is part of the BCPL family in the same way
that monkeys are part of the shrew family --- it's been a /long/ time,
and the two don't look very similar at all anymore.
I don't think Java is usally included as part of this family. I think
usually just CPL BCPL B C. I think it is common to reffere to a family
of languages by mentioning just one language in it. I think this is a
rather vauge and misleading way to talk about languages.
All valid opinions.
Anyway, the
following diagram should better explain the relationship between
languages:
http://faramir.rug.ac.be/courses/soo.../histlang.html
It has some obvious oddities (obvious to me, anyway):
Algol isn't particularly related to Fortran as far as I know. Its
developers certainly knew Fortran, but the languages aren't very similar
at all (and by design!). BASIC should descend from Fortran, if you ask
me, and it certainly shouldn't be hung out there in space.
I don't know why C++ descends partly from Simula in that diagram;
maybe the diagrammer knew something I don't.
The arbitrary segregation of Ada as "object based" [sic] is really
weird.
The diagram is missing all the major languages developed after 1988
except for Java and C#, which points to the diagrammer's agenda. :)
Looking at the diagram it is odd that I read that Paskel and Modula are
part of the ALGO family
That's "Pascal," as in Blaise Pascal, and ALGOL, as in the star.
and B and C are part of a lower level family
(BCPL) and Lisp is at the opposite extreme. How can someone not
directly in the computer science field intelligently right about this
stuff when the experts don't seem to keep it straight.


Which experts have you seen who don't keep it straight? Of all the
references you've provided, every one is correct in the major points;
only the two C#-pushing sources get minor details wrong, and they're
obviously supposed to be taken with a grain of salt (since they're just
trying to show how C#.NET is better than other stuff).

Followups set to comp.lang.misc, since this seems likely to go even
further OT for comp.lang.c.

HTH,
-Arthur
Nov 14 '05 #6

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

Similar topics

137
by: Philippe C. Martin | last post by:
I apologize in advance for launching this post but I might get enlightment somehow (PS: I am _very_ agnostic ;-). - 1) I do not consider my intelligence/education above average - 2) I am very...
47
by: ship | last post by:
Hi We need some advice: We are thinking of upgrading our Access database from Access 2000 to Access 2004. How stable is MS Office 2003? (particularly Access 2003). We are just a small...
12
by: Unbiased_me | last post by:
Hi There I recently read in book that the C compiler is written in C. I unable to comprehend the concept behind this. How is the compiler design started...Where dodoes one start. I tried...
4
by: Greg | last post by:
Regarding extensibility, e.g. EnvDTE what does "DTE" stand for? -- Greg McPherran www.McPherran.com
4
by: DoomedLung | last post by:
What does this operator ">-" stand for or mean, as in... this.ver = navigator.appVersion; this.agent = navigator.userAgent; this.dom = document.getElementById ? 1 : 0; this.opera5 =...
669
by: Xah Lee | last post by:
in March, i posted a essay “What is Expressiveness in a Computer Language”, archived at: http://xahlee.org/perl-python/what_is_expresiveness.html I was informed then that there is a academic...
48
by: Frederick Gotham | last post by:
The "toupper" function takes an int as an argument. That's not too irrational given that a character literal is of type "int" in C. (Although why it isn't of type "char" escapes me... ) The...
8
by: utkarsh.tandon | last post by:
Hi everyone. I'm new to this group. I'm also a newbie to the world of programming, and I needed some advice. I started programming with Python (thanks to ESR) and after finishing one tutorial I...
5
by: cmrhema | last post by:
Hi, I have the following example enum MaterialColors { Blue=1,Red=2,Yellow=4, Purple=Blue|Red,Green=Yellow|Blue,Orange=Red|Yellow, } class Program { static...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.