473,387 Members | 1,592 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.

New to Programming

SG
Hi everyone,

I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?

Secondly, could you please tell me how the knowledge of C will help me
later on? I have a teacher here who just shrugged at this question and
replied that the knowledge of C will help me learn the other advanced
languages later on... Is this true?

Thank You for your help in advance,

Regards,
SG.

Oct 26 '06 #1
29 2198
SG wrote:
I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?
I'd guess there are many reasons, but for me, if I want to program in
an "object-oriented" style, I'll choose a small language that does it
properly (e.g. python), not some big bloated monstrosity with
everything including the kitchen sink thrown in. Or, in
wikipedia-speak: "Many people think that C++ has been extended to the
point of inelegance."
Secondly, could you please tell me how the knowledge of C will help me
later on? I have a teacher here who just shrugged at this question and
replied that the knowledge of C will help me learn the other advanced
languages later on... Is this true?
Yes, to a certain extent. But it will certainly give you insight into
what's going on internally when your program's being run, which many
other languages try to hide from you (with varying degrees of success).

Glenn

Oct 26 '06 #2

SG wrote:
>
I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?
A strangely worded paragraph. Do many people prefer C to C++? If they
do, perhaps they find it better suited to what they want to do. I use C
and I don't use C++, but I don't think I "prefer" C to C++; I don't use
a chain saw either, but I don't prefer C to a chain saw.

Are people who prefer C++ to C just conservative about switching over
to C or is there some other reason?
Secondly, could you please tell me how the knowledge of C will help me
later on?
It will likely help you get jobs which require you to know C, for
starters.
I have a teacher here who just shrugged at this question and
replied that the knowledge of C will help me learn the other advanced
languages later on... Is this true?
Very likely; the more languages you know, the easier it's likely to be
to learn others (as long as you can avoid getting them confused).

Oct 26 '06 #3
SG said:
Hi everyone,

I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?
The usual reasons people tout in answer to this question are: speed,
portability, and closeness to the machine. Whilst those are important
factors, the difference between C and C++ isn't actually very significant
in those terms. C is undoubtedly a smaller and simpler language, though,
and for some that is rather important.

But I think the most compelling reason is a general point to do with
language, and it has the advantage of explaining why many people prefer C++
to C, or indeed language <footo language <bar>.

Language both reflects and shapes the way we think. Those who think about
programming in a particular way will tend to prefer languages that
facilitate the conversion of that kind of thinking into source code. The
opposite side of that coin is also relevant - those who have favoured a
particular language for a fair amount of time will find that their approach
to programming has been shaped by that language. That doesn't mean they
can't use other languages, but it does mean that they will tend to reach
*first* for the language that - for *them* - sits easily with the way they
think about constructing programs.

My principal language for a good seven years or so was BASIC (ouch, right?).
When I first started learning C, I was constantly comparing it
(unfavourably) to BASIC. But then, on one particular day, I learned about
structs (which I had been trying to invent by myself in BASIC for quite a
while) and the file-handling functions. I had been dreading learning about
file-handling, since I knew what a pig it is in BASIC - but in C, WOW, this
was easy! And from that point on, C started to shape up in my mind as a
decent language after all.

In 1990, I came across a language/expert-system combination called Guru. It
was like a cross between BASIC, C, and SQL (if you ignored the complicated
bits), and although I'd never come across SQL before, I found Guru very
easy to learn and use. Within a month or so of beginning it, I was winning
technical arguments against old hands - the language sat well with me, and
I ended up writing some very elegant and powerful programs in it. In fact,
I miss Guru. It's like an old friend that I hope (but do not expect, alas)
to meet again some day. The reason I mention it is that it shares certain
similarities with C++ - that is, it's as if someone had taken C and added
huge chunks to it - database access, built-in spreadsheet, expert system,
graphics, all kind of stuff - and messed with the syntax until it was
almost unrecognisable - and yet the way they'd done it still matched the
way I think about programming.

I started learning C++ (on and off) in about 1991, and it baffled me. I've
largely got over that now, of course, and certainly I find the STL to be
rather attractive, but I look at some people's C++ programs and they just
look completely alien to me. I have to *work* at understanding such
programs, because they seem positively to rejoice in using a particular
kind of rather weird syntax. Guru used weird syntax too, but it was *my
kind* of weird syntax, so I didn't mind. But C++ as written by a C++ wizard
doesn't just look weird - it looks *bizarre*!

And yet a C++ wizard will look askance at me for such a reaction, because he
or she will consider such syntax to be perfectly normal. C++ wizards'
thought processes have been shaped by C++ to some extent, and I would also
argue that their initial affinity with it stemmed in many cases from the
fact that it reflected the way they already thought about programming.

So - it's horses for courses. Or lanes for brains, if you prefer.

Secondly, could you please tell me how the knowledge of C will help me
later on?
Even assuming that you don't want to be "a C programmer" (in the sense of
making it your language of choice, getting paid for writing in C, etc etc),
there are several reasons why knowing it will be beneficial to you:

Firstly, C will give you insight into the work other languages have to do
"under the hood", because there ain't much hood where C is concerned.

Secondly, many important books on general programming use C for their
example code. The classic example is the "Dragon Book", which teaches you
how to write compilers, but there are many others too. And the W Richard
Stevens books on Unix form, all by themselves, a whole series of compelling
reasons to learn C. Being able to read the language is therefore invaluable
in general terms.

Thirdly, almost all platforms (I know of no serious exceptions) have a C
compiler available for them, and for some it's the only realistic choice.
If you want to write code for a platform that only supports C, then you
either write in C or write your own translator for that platform - in C!

HTH. HAND.

--
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)
Oct 26 '06 #4
"J. J. Farrell" <jj*@bcs.org.ukwrites:
SG wrote:
>>
I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?

A strangely worded paragraph. Do many people prefer C to C++? If they
do, perhaps they find it better suited to what they want to do. I use C
and I don't use C++, but I don't think I "prefer" C to C++; I don't use
a chain saw either, but I don't prefer C to a chain saw.
Prefer C to a chain saw? What a ridiculous analogy. You cant program
a computer in a fairly low level,optimised, compiled manner with a
chainsaw.

To the op : which every way you want to cut it, C is easier than C++ in
that its generally far simpler to understand. With C++ you can end up
with incredibly complex code with operators overloaded, generic
packages, obscure object library incantations, multiple inheritance etc etc
>
Are people who prefer C++ to C just conservative about switching over
to C or is there some other reason?
Huh? Most of the switch over happened the other way : most C++
compilers will compile C but no vice versa. It is rare for someone to
move back to C from C++ IMO.
>
>Secondly, could you please tell me how the knowledge of C will help me
later on?

It will likely help you get jobs which require you to know C, for
starters.
Are you trolling? Damn. You are. You must be.
Oct 26 '06 #5
SG writes:
Secondly, could you please tell me how the knowledge of C will help me
later on? I have a teacher here who just shrugged at this question and
replied that the knowledge of C will help me learn the other advanced
languages later on... Is this true?
Partly, but personally I'd say he's got the sequence wrong. It's good
to learn a low-level language so you can see what's going on and so you
won't expect a language to protect you from your mistakes, but learn a
high-level one as well and learn _programming_ from that one.
E.g. Python which was mentioned elsethread. (High-level doesn't mean
harder - quite on the countrary for a good language, because you don't
need to fiddle with details and with bugs you can only make in the
low-level language.)

I learned programming starting at low-level languages (Basic, Pascal,
assembly). So I've had to try to unlearn a lot of bad habits I learned
along the way - because too much of my programming consisted of fiddling
with details instead of getting on with the job, so to speak. In
particular "premature optimization" is a tempting error to make in C.
That is, you spend a lot of time to optimize some part of the program
whose speed might not actually be important at all, and complicate your
program all to hell in the process.

--
Hallvard
Oct 26 '06 #6
SG wrote:
>
I am a complete novice at computers and programming and right now,
all i need to know is that why do many people prefer C to C++? Is
it just because they are used to using C and are conservative about
switching over to C++ or is there some other reason?

Secondly, could you please tell me how the knowledge of C will help
me later on? I have a teacher here who just shrugged at this
question and replied that the knowledge of C will help me learn the
other advanced languages later on... Is this true?
One aspect is that C does not hide much in abstractions, as does
C++. Thus programs written in C give you a much better idea of
what is really going on in the machinery. Of course assembly will
do that even better, but is not portable. Without that fundamental
knowledge you cannot have any idea if you are consuming excess
resources, either hardware or time.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
Oct 26 '06 #7
Richard said:
"J. J. Farrell" <jj*@bcs.org.ukwrites:
>SG wrote:
>>>
I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?

A strangely worded paragraph. Do many people prefer C to C++? If they
do, perhaps they find it better suited to what they want to do. I use C
and I don't use C++, but I don't think I "prefer" C to C++; I don't use
a chain saw either, but I don't prefer C to a chain saw.

Prefer C to a chain saw? What a ridiculous analogy. You cant program
a computer in a fairly low level,optimised, compiled manner with a
chainsaw.
Wrong. You can program a computer to an extremely low level with a chainsaw.
Not only that, but you can use one to decompile just about anything.

<snip>
>
>>
Are people who prefer C++ to C just conservative about switching over
to C or is there some other reason?

Huh?
It was a rhetorical question, styled after the OP's question in an attempt
to make an ironic point.
Most of the switch over happened the other way : most C++
compilers will compile C but no vice versa.
Nope. C++ compilers compile C++, and it's trivial to come up with a program
that is legal C but not legal C++. Offer such a program to a C++ compiler
and it is *obliged* to diagnose the program as incorrect.
It is rare for someone to move back to C from C++ IMO.
And yet I managed it. I moved from C to C++, and then moved right back again
after a few months, because I found C++ just too blechy for words. (I
accept that this was before the 1998 standardisation. Things have no doubt
improved now.)

--
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)
Oct 26 '06 #8
SG wrote:
Hi everyone,

I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++?
I know C and I don't know C++.
Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?
You seem to think that the natural way to go after C
is C++. I have no reason to think so. I'm learning Common
Lisp and when I'm proficient with it I'll "switch over" to it.
After that and a couple more versions of Lisp my next stop
will be Forth unless some new very exciting language gets
invented in the meantime. I doubt that I'll ever have the time
to learn C++.

Oct 26 '06 #9
Richard wrote:
"J. J. Farrell" <jj*@bcs.org.ukwrites:
SG wrote:
>
I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?
A strangely worded paragraph. Do many people prefer C to C++? If they
do, perhaps they find it better suited to what they want to do. I use C
and I don't use C++, but I don't think I "prefer" C to C++; I don't use
a chain saw either, but I don't prefer C to a chain saw.

Prefer C to a chain saw? What a ridiculous analogy. You cant program
a computer in a fairly low level,optimised, compiled manner with a
chainsaw.
I think it's an apt analogy. The opening poster did
not explain why he thinks that many people prefer
C to C++. I'm guessing that J.J. Farrell guessed that the
OP thinks so because many people use C and do not use
C++. So J.J. was making the point that use A and not use
B does not imply prefer A over B. The chainsaw analogy
illustrates that point just fine.

Are people who prefer C++ to C just conservative about switching over
to C or is there some other reason?

Huh? Most of the switch over happened the other way : most C++
compilers will compile C but no vice versa. It is rare for someone to
move back to C from C++ IMO.
Perhaps you're right but the point is that the opening poster
asked a loaded question. The way he phrased it sounded
like he thinks that switching from C to C++ is some kind
of default and people need a reason not to follow that
default. By reversing the question J.J. exhibited why the
original question was loaded.
Secondly, could you please tell me how the knowledge of C will help me
later on?
It will likely help you get jobs which require you to know C, for
starters.

Are you trolling? Damn. You are. You must be.
I'm pretty sure he isn't.

Oct 26 '06 #10

Richard wrote:
"J. J. Farrell" <jj*@bcs.org.ukwrites:
SG wrote:
I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?
A strangely worded paragraph. Do many people prefer C to C++? If they
do, perhaps they find it better suited to what they want to do. I use C
and I don't use C++, but I don't think I "prefer" C to C++; I don't use
a chain saw either, but I don't prefer C to a chain saw.

Prefer C to a chain saw? What a ridiculous analogy.
On the contrary, it's a good analogy. C, C++, and chain saws are all
tools, differently suited to different jobs. I use whichever tool is
most appropriate to the job in hand. I don't "prefer" one tool over the
others. I use a hammer for some jobs and a screwdriver for others, but
I don't prefer one over the other. I use one in preference to the other
for each individual job because of its better suitability to that job,
but the preference changes depending on the job.
You cant program
a computer in a fairly low level,optimised, compiled manner with a
chainsaw.
Obviously not, what a silly idea.
To the op : which every way you want to cut it, C is easier than C++ in
that its generally far simpler to understand. With C++ you can end up
with incredibly complex code with operators overloaded, generic
packages, obscure object library incantations, multiple inheritance etc etc
Are people who prefer C++ to C just conservative about switching over
to C or is there some other reason?

Huh? Most of the switch over happened the other way :
What "switch over"? You write as if there's some exclusive permanent
choice between C and C++.
most C++ compilers will compile C but no vice versa.
Not true; all C and C++ compilers will compile code written in the
common subset of C and C++.
It is rare for someone to move back to C from C++ IMO.
Again, what's this about "moving back"? Why would anyone "move" between
the two?
Secondly, could you please tell me how the knowledge of C will help me
later on?
It will likely help you get jobs which require you to know C, for
starters.

Are you trolling? Damn. You are. You must be.
Nope, just puzzled by questions which seems to be based on strange but
unstated assumptions, or to which the answer seems blatantly obvious. I
did wonder if I was being trolled. To me, the most obvious benefit of
learning a language comes when you need to use it. I can't imagine how,
but the OP seemed to have missed that.

The OP's not alone. I once heard a conversation along the lines of
"What's the point of learning French?"
"I think it will be helpful when I visit France"'
"Oh, I hadn't thought of that".

Oct 26 '06 #11

SG wrote:
Hi everyone,

I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?
Let's say you want to get across town.

Your choices are:

(1) A VW Bug-- 4 cylinders, turn the key, and you're off.

(2) A MIG-25. Say three years of flight training, two hours of
pre-flight planning, paperwork, and inspections.

Now the MIG-25 is a whole lot cooler. Which one do you choose?

Oct 26 '06 #12
Ancient_Hacker said:

<snip>
Let's say you want to get across town.

Your choices are:

(1) A VW Bug-- 4 cylinders, turn the key, and you're off.

(2) A MIG-25. Say three years of flight training, two hours of
pre-flight planning, paperwork, and inspections.

Now the MIG-25 is a whole lot cooler. Which one do you choose?
It's got to be the MIG. My business across town isn't all that urgent, and
turning up in a MIG will definitely give me some street cr^W^Wair miles.

--
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)
Oct 26 '06 #13
Richard Heathfield <in*****@invalid.invalidwrites:
Ancient_Hacker said:
<snip>
>Let's say you want to get across town.

Your choices are:

(1) A VW Bug-- 4 cylinders, turn the key, and you're off.

(2) A MIG-25. Say three years of flight training, two hours of
pre-flight planning, paperwork, and inspections.

Now the MIG-25 is a whole lot cooler. Which one do you choose?

It's got to be the MIG. My business across town isn't all that urgent, and
turning up in a MIG will definitely give me some street cr^W^Wair miles.
I was thinking I'd take the MiG, sell it, use some of the money to buy
a VW Bug, and drive to the bank with a trunk full of cash.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Oct 26 '06 #14
Keith Thompson wrote:
Richard Heathfield <in*****@invalid.invalidwrites:
>Ancient_Hacker said:
<snip>
>>Let's say you want to get across town.

Your choices are:

(1) A VW Bug-- 4 cylinders, turn the key, and you're off.

(2) A MIG-25. Say three years of flight training, two hours of
pre-flight planning, paperwork, and inspections.

Now the MIG-25 is a whole lot cooler. Which one do you choose?
It's got to be the MIG. My business across town isn't all that urgent, and
turning up in a MIG will definitely give me some street cr^W^Wair miles.

I was thinking I'd take the MiG, sell it, use some of the money to buy
a VW Bug, and drive to the bank with a trunk full of cash.
Dummy, the trunk of the VW has an engine in it. There is not nearly
enough room under the hood to hold that much cash.

Take the MiG, sell it on eBay, money to PayPal, take a cab across town.

--
Joe Wright
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Oct 26 '06 #15
Richard wrote:
>
To the op : which every way you want to cut it, C is easier than C++ in
that its generally far simpler to understand. With C++ you can end up
with incredibly complex code with operators overloaded, generic
packages, obscure object library incantations, multiple inheritance etc etc
Or you can end up with very clear, easy to read code. The choice is yours!
>
>>Are people who prefer C++ to C just conservative about switching over
to C or is there some other reason?

Huh? Most of the switch over happened the other way : most C++
compilers will compile C but no vice versa. It is rare for someone to
move back to C from C++ IMO.
I prefer to oscillate, it keeps me on my toes.

--
Ian Collins.
Oct 27 '06 #16
2006-10-26 <_N********************@bt.com>,
Richard Heathfield wrote:
Richard said:
>Most of the switch over happened the other way : most C++
compilers will compile C but no vice versa.

Nope. C++ compilers compile C++, and it's trivial to come up with
a program that is legal C but not legal C++. Offer such a program to
a C++ compiler and it is *obliged* to diagnose the program as
incorrect.
Perhaps it would have been better to say "many C++ compilers are also
the same program as a C compiler". And I believe C++ does specify binary
compatibility with C via 'extern "C"', which might tend to ease
migration.
Oct 27 '06 #17
Ian Collins <ia******@hotmail.comwrites:
Richard wrote:
>>
To the op : which every way you want to cut it, C is easier than C++ in
that its generally far simpler to understand. With C++ you can end up
with incredibly complex code with operators overloaded, generic
packages, obscure object library incantations, multiple inheritance etc etc
Or you can end up with very clear, easy to read code. The choice is yours!
>>
>>>Are people who prefer C++ to C just conservative about switching over
to C or is there some other reason?

Huh? Most of the switch over happened the other way : most C++
compilers will compile C but no vice versa. It is rare for someone to
move back to C from C++ IMO.
I prefer to oscillate, it keeps me on my toes.
Not claws?
Oh, wait, that would be an ocelot.
Oct 27 '06 #18
CBFalconer <cb********@yahoo.comwrites:
One aspect is that C does not hide much in abstractions, as does
C++. Thus programs written in C give you a much better idea of
what is really going on in the machinery. Of course assembly will
do that even better, but is not portable. Without that fundamental
knowledge you cannot have any idea if you are consuming excess
resources, either hardware or time.
This is also beneficial in that you can build very efficient
abstractions yourself as an exercise, and then look at how other
languages do it. You know what you're hiding because you wrote it.

This is how I learned object-orientation: I started out in C, with
abstract data types, typedef struct foo_struct { ... } foo, foo
*alloc_foo(), void destroy_foo(), etc., and *then* progressed to
languages with explicit support for all those nice OO features.

Now my languages of choice are Perl and Objective-C, but I write a lot
of C when I want things to be portable -- you can embed C in Perl, or
link it with Objective-C or C++....

Charlton

Oct 28 '06 #19
Ian Collins wrote:
Richard wrote:

To the op : which every way you want to cut it, C is easier than C++ in
that its generally far simpler to understand. With C++ you can end up
with incredibly complex code with operators overloaded, generic
packages, obscure object library incantations, multiple inheritance etc etc
Or you can end up with very clear, easy to read code. The choice is yours!
you are right, i am using them both from last 4 months (in procedural
style only, without creating any classes). C++ programmes are much
shorter & easy to maintain. OTOH, C++ sometimes confuses you very much
whereas C is very simple to learn. i wanted to learn C++ but i had to
learn C for that as there is no book in my country that teaches C++
independently, every book takes route through C & hence today i quit
C++ & dwell into C.
>Are people who prefer C++ to C just conservative about switching over
to C or is there some other reason?
depends on "what people think when they are faced with a problem?".

what problem you are trying to solve? mine was "A JOB in India" i.e.
why C++ but "books" posed the new problem & also i lack on real-life
coding experience, i only know what are variables & fucntions & some
Common Lisp. hence 3 problems at hand, will solve them through C.

what *exactly* the problem you are trying to solve?
Huh? Most of the switch over happened the other way : most C++
compilers will compile C but no vice versa. It is rare for someone to
move back to C from C++ IMO.
I prefer to oscillate, it keeps me on my toes.

--
Ian Collins.
Oct 28 '06 #20
Keith Thompson wrote:
It's got to be the MIG. My business across town isn't all that urgent, and
turning up in a MIG will definitely give me some street cr^W^Wair miles.

I was thinking I'd take the MiG, sell it, use some of the money to buy
a VW Bug, and drive to the bank with a trunk full of cash.
Ha...Ha....Ha..... great way, great thinking.... :-)
Keith Thompson (The_Other_Keith)
thanks for telling that.
We must do something. This is something. Therefore, we must do this.
what does that mean?

Oct 28 '06 #21
Joe Wright wrote:
I was thinking I'd take the MiG, sell it, use some of the money to buy
a VW Bug, and drive to the bank with a trunk full of cash.
Dummy, the trunk of the VW has an engine in it. There is not nearly
enough room under the hood to hold that much cash.

Take the MiG, sell it on eBay, money to PayPal, take a cab across town.
Joe is intelligent ....Goody..good :-)

"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
i, really, never understood what exactly that means?

may you explain?

Oct 28 '06 #22
arnuld said:
>Keith Thompson wrote:
<snip>
>
>We must do something. This is something. Therefore, we must do this.

what does that mean?
It's a quotation from "Yes Minister" (certainly the book and quite possibly
the TV series as well), the purpose of which is to expose the kind of
flawed logic which many people employ, often without realising it.

In the original, the target was politicians; Keith is probably aiming at
programmers instead, and that's fair enough, but it is nevertheless a great
shame that he doesn't ascribe the quotation properly (to Antony Jay and
Jonathan Lynn).

--
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)
Oct 28 '06 #23
arnuld wrote:
>Keith Thompson wrote:
<snip>
>Keith Thompson (The_Other_Keith)

thanks for telling that.
Also he is no relation to the Dave Thompson I knew.
>We must do something. This is something. Therefore, we must do this.

what does that mean?
It's the old politicians fallacy as given in Yes Minister (it may
pre-date that for all I know). See http://www.yes-minister.com/ for more
on Yes Minister.
--
Flash Gordon
Oct 28 '06 #24
Flash Gordon wrote:
arnuld wrote:
>Keith Thompson wrote:
.... snip ...
>
>>We must do something. This is something. Therefore, we must do this.

what does that mean?

It's the old politicians fallacy as given in Yes Minister (it may
pre-date that for all I know). See http://www.yes-minister.com/
for more on Yes Minister.
PBS (US) used to show that regularly, later yes-prime-minister.
One of the funniest series I have seen. Unfortunately they stopped
it.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
Oct 28 '06 #25
"SG" <sh*****@gmail.comwrote in message
I am a complete novice at computers and programming and right now, all
i need to know is that why do many people prefer C to C++? Is it just
because they are used to using C and are conservative about switching
over to C++ or is there some other reason?
C is a successful language, primarily because pointers abstract the basic
machine operations very powerfully and efficiently.
C++ is an attempt to improve it. As with most suggested improvements, you
get some people who are very enthusiastic, and some people who hate the
idea.
C++ allows object-oriented programming, which is very unwieldy in C, however
it brings its own problems. The object-orientation itself is controversial.
It is not the panacea that some proponents would have you believe.
>
Secondly, could you please tell me how the knowledge of C will help me
later on? I have a teacher here who just shrugged at this question and
replied that the knowledge of C will help me learn the other advanced
languages later on... Is this true?
Yes it will. C is very close to the machine. With a solid foundation in C,
you should be able to pick up virtually any language relatively quickly.
This is particularly true of C++, because it is a near superset of C.
In the same way, it is useful to learn how to do multiplications and long
divisions by hand. In professional life I hardly ever do these operations by
hand, of course, because the calculator is just a click away. However having
this knowledge means that I know what the calcuator is doing, so I can use
it effectively.
--
www.personal.leeds.ac.uk/~bgy1mm
freeware games to download.
Oct 28 '06 #26
SG wrote:
Secondly, could you please tell me how the knowledge of C will help me
later on? I have a teacher here who just shrugged at this question and
replied that the knowledge of C will help me learn the other advanced
languages later on... Is this true?
really, i do not have any answer to this question but i can not resist
some thoughts. i have some feelings for C i am not able to understand.
earlier this month i started my BLOG & i worte an article "On The
Perils of Java Schools" as my viewpoint on Joel Spolsky's article "The
Perils of Java Schools". these are some of the lines from my blog:

".....what i do think is, having the skills of a *musician* is a
sufficient and not the necessary condition. i feel, becausee of my
experience, that the part of brain that *creates* great-music also
creates great-softwares. If you have an *analytical-ear* for music then
you have it, then you can become an extremely brilliant programmer, the
ones who are rare & i....."

now i will explain the situation:

--- i like "hard-rcok", Metallica, Iron-Maiden, Black Sabbath,
Marilyn Manson, Pink Floyd are among my faourites. "Rock" is quite
deep, has more meaning than pop, IMHO. everytime i listen to my
faourite songs, i feel i am holding "K&R2" in my hands or i feel i am
"UNIX or C", NO i never saw how K&R2 looks like, i ordered this book 5
hours ago. i feel i am "history of UNIX, i am PDP-11". now i listen to
many other songs but that happens only with Rock music & at the same
time i get the "technical-ability" to dissect the songs, i feel like as
if my brain is taking vocals, guitars & drums apart as 3 different
things & then making a genius-piece of each of these parts then it
assembles them together to create the original master-piece & sometimes
i also create my own. at that time, i dwell deep untill there is C,
UNIX, rock & me, they & me become the one. ---

Can anybody explain why i feel so? i ask because folks here carry
much-wider experience of C, UNIX & LIFE in general. may be i am able to
understand something about myself through comp.lang.c

(that never happened with C++, Ruby or Python. Lisp is also a different
story but it is nearly like the one i told you except that i started to
feel that way after 6 months from when i 1st learnt it. 6 months ago it
was just like other langugaes.)

thanks for your precious time.

--arnuld
http://arnuld.blogspot.com

Oct 28 '06 #27
Richard Heathfield <in*****@invalid.invalidwrites:
arnuld said:
>>Keith Thompson wrote:
<snip>
>>
>>We must do something. This is something. Therefore, we must do this.

what does that mean?

It's a quotation from "Yes Minister" (certainly the book and quite possibly
the TV series as well), the purpose of which is to expose the kind of
flawed logic which many people employ, often without realising it.

In the original, the target was politicians; Keith is probably aiming at
programmers instead, and that's fair enough, but it is nevertheless a great
shame that he doesn't ascribe the quotation properly (to Antony Jay and
Jonathan Lynn).
<OT>
No, I'm not aiming it at programmers. More detail than that would be
seriously off-topic, but I'm satisfied with the ambiguity; it's
applicable to nearly anything. It's almost a universal fallacy.

When I started using it as my sig quote, I didn't know where it came
from, and I don't know where I got it. I'm not sure that I've ever
seen an episode of "Yes Minister", and I've never read the book.

The earliest Usenet reference to the line is from 1992, and it
explicitly refers to "Yes Minister". (Adding "-supercomputer" to the
search terms helped a great deal.)

I'll certainly consider adding an attribution.

IMDB shows Antony Jay and Jonathan Lynn as the creators of the series,
and the writers of at least some episodes. Are you sure they wrote
that specific line? Perhaps I'll just attribute it to the series.
</OT>

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Oct 28 '06 #28
Keith Thompson said:

<snip>
IMDB shows Antony Jay and Jonathan Lynn as the creators of the series,
and the writers of at least some episodes. Are you sure they wrote
that specific line?
Yes, they wrote all the episodes, and all the books (which are all taken
from the TV series, but re-cast in the form of diaries).

--
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)
Oct 28 '06 #29
>>>We must do something. This is something. Therefore, we must do this.
>>>
what does that mean?

It's the old politicians fallacy as given in Yes Minister (it may
pre-date that for all I know). See http://www.yes-minister.com/
for more on Yes Minister.
Recent US administrations (of both parties) probably consider this
to be a state secret. It's how they come up with ideas like
protecting a 2100-mile border with a 700-mile fence, and the CAN-SPAM
act which does nothing much about SPAM. Next they're probably going
to require registration of hotel bar keys and paper clips because
they can be used to breach the security of a Diebold electronic
voting machine.
>PBS (US) used to show that regularly, later yes-prime-minister.
One of the funniest series I have seen. Unfortunately they stopped
it.
It's difficult to keep getting funding from a government when you're
leaking its best secrets, even if you don't realize it and the
government won't admit it.
Oct 30 '06 #30

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

Similar topics

5
by: Martin | last post by:
When was inheritance intruduced into object oriented programming? More generally, does anyone know or have any sources on when the different features were introduced into object oriented...
12
by: G. | last post by:
Hi all, During my degree, BEng (Hons) Electronics and Communications Engineering, we did C programming every year, but I never kept it up, as I had no interest and didn't see the point. But now...
3
by: user | last post by:
Hi all, At the outset, I regret having to post this slightly OT post here. However, I strongly feel that people in this group would be the best to advise me on my predicament. I am working as...
134
by: evolnet.regular | last post by:
I've been utilising C for lots of small and a few medium-sized personal projects over the course of the past decade, and I've realised lately just how little progress it's made since then. I've...
7
by: Robert Seacord | last post by:
The CERT/CC has just deployed a new web site dedicated to developing secure coding standards for the C programming language, C++, and eventually other programming language. We have already...
30
by: Jakle | last post by:
I have been googling, but can seem to find out about C GUI libraries. My main platform is Windows, but it would be nice to find a cross platform library. I've been programming with php, which...
47
by: Thierry Chappuis | last post by:
Hi, I'm interested in techniques used to program in an object-oriented way using the C ANSI language. I'm studying the GObject library and Laurent Deniau's OOPC framework published on his web...
111
by: Enteng | last post by:
Hi I'm thinking about learning C as my first programming language. Would you recommend it? Also how do you suggest that I learn it?What books/tutorials should I read for someone like me? Thanks...
14
by: deko | last post by:
For building Windows desktop apps, the clear favorite is C#. But my clients can't afford to buy Microsoft products. So I need to develop software for Linux users and web applications. In the...
17
by: CoreyWhite | last post by:
I bought this book years ago, when I was just learning C++. Since then I've gone through every math course offered at my college, taken courses on coding C & thinking in terms how how to make the...
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: 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
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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,...

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.