473,794 Members | 2,738 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C running strong

Programming languages come and go. Still is amazing that in this survey
from
http://www.devsource.com/article2/0,1895,2016936,00.asp
the C language comes second, right after Java.

Java
# What it is: An object-oriented programming language developed by James
Gosling and colleagues at Sun Microsystems in the early 1990s.
# Job availabilities: 14,408

C
# What it is: A standardized, general-purpose programming language, it's
one of the most pervasive languages and the basis for several others
(such as C++).
# Job availabilities: 6,164, including all derivatives

C#
# What it is: A general-purpose, compiled, object-oriented programming
language developed by Microsoft as part of its .NET initiative, it
evolved from C and C++
# Job availabilities: 5,111

Perl
# What it is: Perl is an open-source, cross-platform, server-side
interpretive programming language used extensively to process text
through CGI programs.
# Job availabilities: 4,810

JavaScript
# What it is: Not to be confused with Java, JavaScript is a an
object-oriented, scripting programming language that runs in the Web
browser on the client side. It's smaller than Java, with a simplified
set of commands, easier to code and doesn't have to be compiled.
# Job availabilities: 4,406

VB.Net (Visual Basic .Net)
# What it is: An object-oriented language implemented on Microsoft's
..Net framework.
# Job availabilities: 2,090

PHP
# What it is: An open-source, interpretive, server-side, cross-platform,
HTML scripting language, especially well-suited for Web development as
it can be embedded into HTML pages.
# Job availabilities: 1,152*

AJAX (Asynchronous JavaScript and XML)
# What it is: Though technically not a programming language, AJAX uses
XHTML or HTML, JavaScript and XML to create interactive Web applications.
# Job availabilities : 1,106

Ruby and Ruby on Rails
# What they are: Ruby is a dynamic, object-oriented, open-source
programming language; Ruby on Rails is an open-source Web application
framework written in Ruby that closely follows the MVC
(Model-View-Controller) architecture.
# Job availabilities : 210 and 54, respectively

Python
# What it is: An interpreted, dynamically object-oriented, open-source
programming language that utilizes automatic memory management.
# Job availabilities: 811

* All numbers on job availability were pulled from nationwide queries on
Dice.com, a job site for technology professionals.
Dec 4 '06
15 1744
>>>>"BB" == Ben Bacarisse <be********@bsb .me.ukwrites:

BB(1) No module system so you can't provide a package to learn
BBwith. Even a quasi module system like #include "graphics.h "
BBallows students to start writing interesting program from day
BBone.

One of the design goals of Pascal was that a Pascal file could be
compiled on its own in one pass. Allowing packages breaks this. This
is because Pascal is *also* useful in teaching compiler construction.

Many of the commercially available Pascals for microcomputers (I
remember in particular Turbo Pascal for MS-DOS and Think Pascal and
MPW for Macintoshes) included an extension to work around this.

Charlton
--
Charlton Wilbur
cw*****@chromat ico.net
Dec 6 '06 #11
james of tucson wrote:
David T. Ashley wrote:
Gosh, I don't see any market for Pascal programmers! ... All that time
wasted in computer science classes.

I know of quite a few commercial projects that were developed in Delphi,
so I imagine there is some.
Isn't Dephi a separate language derived from Pascal ?

Dec 6 '06 #12
CBFalconer <cb********@yah oo.comwrites:
Ben Bacarisse wrote:
>Richard Heathfield <rj*@see.sig.in validwrites:
... snip ...
>>>
Pascal is a superb teaching language. That it is not widely used
in industry does not change this fact.

Since so many regulars are posting OT about Pascal these days, I
beg leave to join in...

I have used Pascal to teach programming and it is not up to the
task. Lots of little details that could have been finessed in a
teaching language were not (the IO system comes to mind) but the
two biggest problems are:

That's because you don't understand it.
If you say so.
The file system is very
flexible, and can handle almost anything if you write a suitable
driver (in something other than Pascal).
What an extraordinary idea. I am not alone in this view of Pascal's
IO system, and if you think it is simply my ignorance and/or the fact
that I did not write a suitable driver, I won't try to persuade
otherwise. Brian Kernighan has written an excellent critique of
Pascal which explains, far better than I can, some of the "little
details" I was referring to.
Don't forget that the
file can be a "FILE OF <RECORD>", and that the f^ will be an
instance of that record.
How could I forget such a thing?
Of course if you use crippled non-Pascal
systems, such as Turbo, you never get to see or use these
abilities.
That would be daft.

<snip>
The other major criticism has been the lack of separate compilation
in ISO7185. ISO10206 (Extended Pascal) handles this more than
adequately and is downward compatible. ISO10206 has been available
since 1986, 1984 for drafts.
There are lots of extensions that address this problem. I can see a
huge OT thread growing if we start to get into what "Pascal" is, but I
take it to mean ISO 7185. You are free to take it to mean Extended
Pascal. I would have posted a different response if Extended Pascal
had been claimed to be a superb teaching language.

--
Ben.
Dec 6 '06 #13
Spiros Bousbouras wrote:
james of tucson wrote:
>David T. Ashley wrote:
>>Gosh, I don't see any market for Pascal programmers! ... All
that time wasted in computer science classes.

I know of quite a few commercial projects that were developed in
Delphi, so I imagine there is some.

Isn't Dephi a separate language derived from Pascal ?
It certainly isn't Pascal. It omits far too much of the
essentials. I don't know if the worst of those omissions can still
be fixed with my txtfiles unit for Turbo. See:

<http://cbfalconer.home .att.net/download/>

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home .att.net>
Dec 7 '06 #14
Ben Bacarisse wrote:
>
.... snip ...
>
What an extraordinary idea. I am not alone in this view of Pascal's
IO system, and if you think it is simply my ignorance and/or the fact
that I did not write a suitable driver, I won't try to persuade
otherwise. Brian Kernighan has written an excellent critique of
Pascal which explains, far better than I can, some of the "little
details" I was referring to.
While BK is highly respected in general, his critique is from the
point of view of someone trying to replace C, and he didn't really
understand the language either. Better than most, though. IIRC he
also wasn't aware of lazyio.

For interactive use the only major criticism is the fact that read
will abort on faulty input. This was fixed in Pascalp by providing
a set of readx[int, etc] that returned an error indicator. Those
can be built within ISO7185 without difficulty, but cannot be
integrated into the pseudo variadic read function without diddling
the compiler and making it non-compliant.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home .att.net>
Dec 7 '06 #15
Ben Bacarisse <be********@bsb .me.ukwrote:
CBFalconer <cb********@yah oo.comwrites:
The other major criticism has been the lack of separate compilation
in ISO7185. ISO10206 (Extended Pascal) handles this more than
adequately and is downward compatible. ISO10206 has been available
since 1986, 1984 for drafts.

There are lots of extensions that address this problem. I can see a
huge OT thread growing if we start to get into what "Pascal" is, but I
take it to mean ISO 7185. You are free to take it to mean Extended
Pascal. I would have posted a different response if Extended Pascal
had been claimed to be a superb teaching language.
So would I: I would have said that it has many of the same problems C
has for teaching (and few of its advantages for actual use).

Richard
Dec 7 '06 #16

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

Similar topics

129
64598
by: Torbjørn Pettersen | last post by:
I've started cleaning up my HTML and implementing CSS. So far I've used FrontPage, but am switching over to DreamWeaver. Reading a bit on W3Schools.com and W3.org I see there are a lot of HTML code I never even knew existed. Among these are <em> and <strong>. What's the difference between these two and <i> and <b>? -- Torbjørn Pettersen Editor/Webmaster
1
307
by: John E. | last post by:
How can I compile two projects with a circular reference while giving them a strong name? There is a project that we have that has two components that reference each other e.g. A<->B thus creating A.dll and B.dll. I have a project (e.g. R with an assembly name of Com.MyCompany.R.dll) that has to use this mess and access A. So, R->A. Well, Com.MyCompany.R.dll is going in the GAC. It is set for strong name (entry in the assembly...
4
1948
by: Boris | last post by:
I observe the following strange behavior of my application. Let say we have managed application MyApp.exe which depend on a few assemblies MyAssembly1.dll, MyAssembly2.dll and MyAssembly3.dll. The assemblies I mentione have strong names. I build the exe and all assemblies on my computer and install assemblies to GAC. I run MyApp.exe, test it and everything is OK. Then I copy all executable files (exe and dll) to our network server.
6
1655
by: Manuel Lopez | last post by:
Hello, I have a Web Project (UserControls.dll) with some user controls that is shared by many asp.net web applicattions. What we do is copy UserControls.dll to all the applications bin folders an this works correctly. We want to have this shared code in the GAC.
5
2122
by: bjarne | last post by:
I´ve made a desktop application in C# (.NET 1.1) and now I would like it to run in a local intranet. I know that I can change the .NET configuration on each client and give the specific application FULL_TRUST permission on the machine ... but isn´t there an easier way ?? Each assembly in the application is strong named, and I seem to remember that this should make it possible to have .NET prompt each user for FULL_TRUST permission when...
1
2370
by: Tim F | last post by:
Problem: I'm receiving the error "File or assembly name XXXXX or one of its dependencies, was not found." when trying to execute code in an assmebly that has both a strong-name and has been installed into the GAC. We originally had this assembly without a strong-name and we were successfully using it by referencing it when it was NOT in the GAC. The assembly was built using the 1.0 framework and we were able to call it from both 1.0...
8
2697
by: per9000 | last post by:
Dear readers, I have some problems with strong keys. What I want to do is basically this. A - create an application (f.x. strongHello.dll) with a strong key. B - import the functions of this dll into a console application (f.x StrongConsoleApp.exe) and run it if I have somehow specified the public part of the strong key and not otherwise.
1
1740
by: utpal | last post by:
Hi, My CSharp program, when I run from the local drive it can create/modify registry. However running the program from a network drive, gives RegistryPremission error. I don't belive that just by running the program from a network drive, the program will try to access the registry of the network machine. Here is the code snippet: RegistryKey rk =...
6
5684
by: raylopez99 | last post by:
Anybody use Strong Name Signing? I think this is used by default for Resource files, which is one reason perhaps I can't get my resource files to work (somehow the public key is messed up, perhaps since I've installed so many versions of Visual Studio) RL http://msdn.microsoft.com/en-us/library/h4fa028b.aspx Deployment in Visual Studio
1
8146
by: =?Utf-8?B?Q2lhcmFuIE8nJ0Rvbm5lbGw=?= | last post by:
On reflection, you could possibly make the app a self extracting zip file which extracts the EXE and a settings file and then starts the app, then when you app closes, it can repack the settings file and itself into the exe. You would probably want a tool for this bit which could be in the zip too. So the app isnt single exe when running but when not running, it is. Just an idea for you to think about. Another option would possibly be to...
0
9518
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,...
0
10433
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10212
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10161
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,...
0
9035
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6777
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4112
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
3720
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2919
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.