473,657 Members | 2,592 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 3068
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 ;-)"

"Christophe r 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).)
"Christophe r 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
7060
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 pragmatic - 3) I usually move forward when I get the gut feeling I am correct - 4) Most likely because of 1), I usually do not manage to fully explain 3) when it comes true. - 5) I have developed for many years (>18) in many different environments,...
47
4515
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 company and this is a big decision for us(!) It's not just the money it's committing to an new version of Access!
12
25448
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 Googling for the answer that C is written in C, however the web search proved futile. C # and .net is written in .net...What!, and the list goes on
4
3290
by: Greg | last post by:
Regarding extensibility, e.g. EnvDTE what does "DTE" stand for? -- Greg McPherran www.McPherran.com
4
2146
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 = this.agent.indexOf("Opera 5") >- 1;
669
25860
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 paper written on this subject. On the Expressive Power of Programming Languages, by Matthias Felleisen, 1990. http://www.ccs.neu.edu/home/cobbe/pl-seminar-jr/notes/2003-sep-26/expressive-slides.pdf
48
3353
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 "toupper" function imposes a further constrait in that the value passed to it must be representable as a unsigned char. (If C does not require all character values to be positive, then again, this constrait too escapes me... ) Let's say we have the...
8
1406
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 gained enough knowledge to make small programs and device my own algorithms. Then one of my friends who is an expert programmer gave me the advice to shift to C. So I picked up this book on C by Kernighan and Ritchie. I've completed the book and...
5
3668
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 void Main(string args) {
0
8425
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
8326
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8522
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6177
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4333
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2745
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1973
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1736
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.