473,508 Members | 2,363 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C++: 4 paradigms?

I've perused the FAQ, found some mention of paradigm, but didn't really find
an answer to my question.

What is meant by "C++ is a 4 paradigm language?" What are the 4 paradigms
of C++ and what makes them paradigms? Is C++/CLI the 5th paradigm of C++?
why/why not?

thanks,
crichmon
Jul 22 '05 #1
26 3164
crichmon wrote:
I've perused the FAQ, found some mention of paradigm, but didn't really find an answer to my question.

What is meant by "C++ is a 4 paradigm language?" What are the 4 paradigms
of C++ and what makes them paradigms? Is C++/CLI the 5th paradigm of C++?
why/why not?


- procedural. Programs control flow directly
- OO. Programs control flow indirectly, thru virtual methods
- generic. Like OO but bound at compile time

- declarative.

The last one is like SQL. You arrange elements in the shape of the result
you want, pull the rip cord, and the elements drive an engine to produce the
result.

I have no idea how that should work in C++ or if it's what they meant.

I have never learned a reason to distinguish these paradigms. Just write.

--
Phlip
http://industrialxp.org/community/bi...UserInterfaces
Jul 22 '05 #2
crichmon wrote:
I've perused the FAQ, found some mention of paradigm, but didn't really find
an answer to my question.

What is meant by "C++ is a 4 paradigm language?" What are the 4 paradigms
of C++ and what makes them paradigms? Is C++/CLI the 5th paradigm of C++?
why/why not?

Yes C++ is a multiparadigm language and currently supports 4 paradigms.
The procedural paradigm (functions etc), the modular paradigm
(namespaces), the object oriented paradigm and the generic programming
paradigm (templates). Each paradigm is supported well with optimal space
and time efficiencies.

Regarding C++/CLI, I have not seen anyone else call it as the 5th
paradigm except me. Perhaps you have seen it in my pages where I write
"We can dare to say that C++/CLI is the fifth paradigm of C++". However
I do not if this has much scientific basis, and I am going to remove
that line if I get many complaints about it. :-)


Regards,

Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #3
* Ioannis Vranos:
crichmon wrote:
I've perused the FAQ, found some mention of paradigm, but didn't really find
an answer to my question.

What is meant by "C++ is a 4 paradigm language?" What are the 4 paradigms
of C++ and what makes them paradigms? Is C++/CLI the 5th paradigm of C++?
why/why not?


Yes C++ is a multiparadigm language and currently supports 4 paradigms.
The procedural paradigm (functions etc), the modular paradigm
(namespaces), the object oriented paradigm and the generic programming
paradigm (templates). Each paradigm is supported well with optimal space
and time efficiencies.


I didn't know that.

But certainly it's not something everyone agrees on.

For example, I absolutely do not agree that C++ "supports" modular
programming, since there _is_ no module concept in C++. However,
C++ allows you to fake some of it by strictly following some set of
conventions (header file guards etc.). That's in the same spirit
as assembler language supports object-orientation (even old TASM).

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #4
Alf P. Steinbach wrote:
Yes C++ is a multiparadigm language and currently supports 4 paradigms.
The procedural paradigm (functions etc), the modular paradigm
(namespaces), the object oriented paradigm and the generic programming
paradigm (templates). Each paradigm is supported well with optimal space
and time efficiencies.

I didn't know that.

But certainly it's not something everyone agrees on.

For example, I absolutely do not agree that C++ "supports" modular
programming, since there _is_ no module concept in C++. However,
C++ allows you to fake some of it by strictly following some set of
conventions (header file guards etc.). That's in the same spirit
as assembler language supports object-orientation (even old TASM).


I have seen what I said above in TC++PL3 . In chapter 2 BS explains the
paradigms supported and you can find the modular paradigm on page 26 (2.4).


Regards,

Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #5
* Ioannis Vranos:
Alf P. Steinbach wrote:
Yes C++ is a multiparadigm language and currently supports 4 paradigms.
The procedural paradigm (functions etc), the modular paradigm
(namespaces), the object oriented paradigm and the generic programming
paradigm (templates). Each paradigm is supported well with optimal space
and time efficiencies.


I didn't know that.

But certainly it's not something everyone agrees on.

For example, I absolutely do not agree that C++ "supports" modular
programming, since there _is_ no module concept in C++. However,
C++ allows you to fake some of it by strictly following some set of
conventions (header file guards etc.). That's in the same spirit
as assembler language supports object-orientation (even old TASM).


I have seen what I said above in TC++PL3 . In chapter 2 BS explains the
paradigms supported and you can find the modular paradigm on page 26 (2.4).


Well I doubt that Bjarne says C++ supports modular programming in a
sense different from OO (e.g. like Modula or Pascal or Ada), but if he
really does then I for one disagree! ;-)

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #6
Alf P. Steinbach wrote:
Well I doubt that Bjarne says C++ supports modular programming in a
sense different from OO (e.g. like Modula or Pascal or Ada), but if he
really does then I for one disagree! ;-)


Have you read the paragraph I provided you? In case you do not have this
book here is how it starts:

[It is placed after the procedural paradigm explanation and the topics
are placed in historical ordering].

"2.4 Modular Programming

Over the years, the emphasis in the design of programs has shifted from
the design of procedures and toward the organization of data. Among
other things, this reflects an increase in program size.

A set of related procedures with the data they manipulate is often
called a module. The programming paradigm becomes:
Decide which modules you want;
partition the program so that data is hidden within modules."

Then it has some more.

Regards,

Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #7
* Ioannis Vranos:
Alf P. Steinbach wrote:
Well I doubt that Bjarne says C++ supports modular programming in a
sense different from OO (e.g. like Modula or Pascal or Ada), but if he
really does then I for one disagree! ;-)
Have you read the paragraph I provided you?


Nope, cause you didn't provide it... :-)

In case you do not have this book
I don't. I have the first edition, though.

here is how it starts:

[It is placed after the procedural paradigm explanation and the topics
are placed in historical ordering].

"2.4 Modular Programming

Over the years, the emphasis in the design of programs has shifted from
the design of procedures and toward the organization of data. Among
other things, this reflects an increase in program size.

A set of related procedures with the data they manipulate is often
called a module. The programming paradigm becomes:

Decide which modules you want; partition the program so that
data is hidden within modules."


Hum, well, that could refer to just about anything, including OO, and
it doesn't say that C++ supports _whatever_ it is, so as usual I think
Bjarne has not overstated the case, but here is being misinterpreted.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #8
Alf P. Steinbach wrote:
Have you read the paragraph I provided you?

Nope, cause you didn't provide it... :-)


I was talking about this: "In chapter 2 BS explains the paradigms
supported and you can find the modular paradigm on page 26 (2.4)."

"2.4 Modular Programming

Over the years, the emphasis in the design of programs has shifted from
the design of procedures and toward the organization of data. Among
other things, this reflects an increase in program size.

A set of related procedures with the data they manipulate is often
called a module. The programming paradigm becomes:

Decide which modules you want; partition the program so that
data is hidden within modules."

Hum, well, that could refer to just about anything, including OO, and
it doesn't say that C++ supports _whatever_ it is, so as usual I think
Bjarne has not overstated the case, but here is being misinterpreted.


OO paradigm is mentioned later and in this paragraph namespaces are
mentioned for implementing the paradigm:
"
[...]

C++ provides a mechanism for grouping related data, functions, etc.,
into separate namespaces. For example, the user interface of a Stack
module could be declared and used like this:
namespace Stack{ // interface
void push(char) ;
char pop() ;
}
void f()
{
Stack: :push(´c´) ;
if (Stack: :pop() != ´c´) error("impossible") ;
}
The Stack:: qualification indicates that the push() and pop() are those
from the Stack namespace. Other uses of those names will not interfere
or cause confusion.

The definition of the Stack could be provided in a separately-compiled
part of the program:
namespace Stack{ // implementation
const int max_size = 200;
char v[max_ size] ;
int top = 0;
void push(char c) { /* check for overflow and push c */ }
char pop() { /* check for underflow and pop */ }
}

The key point about this Stack module is that the user code is insulated
from the data representation of Stack by the code implementing
Stack::push() and Stack::pop(). The user doesn’t need to know that the
Stack is implemented using an array, and the implementation can be
changed without affecting user code.
[...]

"

Anyway it is an excellent book and I think every C++ programmer should
buy and *read* it.


Regards,

Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #9
* Ioannis Vranos:

Anyway it is an excellent book and I think every C++ programmer should
buy and *read* it.


Yes, I agree.

In fact it's even stronger: if you like the book then you're probably
a good C++ programmer or C++ programmer material, and if not, then
likely not. ;-)

And yes, as shown (I snipped that example) it's possible to implement
Modula/Pascal/Ada-like modules in C++, by use of conventions. Some
features are not possible to implement though. For example, transparent
module initialization requires language _support_. And in a language
with module support you get automatic checking of module dependencies
and such, which must be faked via brittle include guards in C++. Etc.

Cheers,

- Alf

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #10
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Ioannis Vranos <iv*@guesswh.at.grad.com> wrote in message news:<cd***********@ulysses.noc.ntua.gr>...
Regarding C++/CLI, I have not seen anyone else call it as the 5th
paradigm except me. Perhaps you have seen it in my pages where I write
"We can dare to say that C++/CLI is the fifth paradigm of C++". However
I do not if this has much scientific basis, and I am going to remove
that line if I get many complaints about it. :-)


I saw it on your page the other day, and remember wondering what basis
you had to say that. I'm not telling you what to put and not put on
your page, but maybe the fact that that particular piece stood out to
me also well before reading this means something.

Tommy McDaniel
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFA+0y2VB8FYP9YqDcRAmfrAJ9ON0tBcXG978LKKYekvk VHDbQ7fwCfc4Za
8OMIln9shItZlxgYC6rqN3U=
=bkCw
-----END PGP SIGNATURE-----
Jul 22 '05 #11
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

"Phlip" <ph*******@yahoo.com> wrote in message news:<X2***************@newssvr17.news.prodigy.com >...
crichmon wrote:
What are the 4 paradigms
of C++ and what makes them paradigms?
- procedural. Programs control flow directly
- OO. Programs control flow indirectly, thru virtual methods
- generic. Like OO but bound at compile time

- declarative.


In that case it seems that there is disagreement on the fourth
paradigm. The one I have seen mentioned elsewhere is modular. Maybe
this makes five paradigms.
I have never learned a reason to distinguish these paradigms. Just write.


Amen.

Tommy McDaniel
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFA+049VB8FYP9YqDcRAv7uAJ4xsvAVJpFCwScVCt/8bnTQ95Ia0QCfVQUJ
4YD46YE+TosdZty+Lkef0tg=
=LDHj
-----END PGP SIGNATURE-----
Jul 22 '05 #12
On Mon, 19 Jul 2004 00:40:25 +0300, Ioannis Vranos
<iv*@guesswh.at.grad.com> wrote:
Regarding C++/CLI, I have not seen anyone else call it as the 5th
paradigm except me. Perhaps you have seen it in my pages where I write
"We can dare to say that C++/CLI is the fifth paradigm of C++". However
I do not if this has much scientific basis, and I am going to remove
that line if I get many complaints about it. :-)


Surely C++/CLI is just adds extensions to some of the already present
paradigms, particularly OOP.

Tom
Jul 22 '05 #13

"Ioannis Vranos" <iv*@guesswh.at.grad.com> wrote in message
news:cd***********@ulysses.noc.ntua.gr...
crichmon wrote:
I've perused the FAQ, found some mention of paradigm,
but didn't really find an answer to my question.

What is meant by "C++ is a 4 paradigm language?" What
are the 4 paradigms of C++ and what makes them
paradigms? Is C++/CLI the 5th paradigm of C++?
why/why not?
Yes C++ is a multiparadigm language and currently
supports 4 paradigms. The procedural paradigm
(functions etc), the modular paradigm (namespaces),
the object oriented paradigm and the generic
programming paradigm (templates). Each paradigm is
supported well with optimal space and time
efficiencies.


Thanks everyone for the answers!

Regarding C++/CLI, I have not seen anyone else call
it as the 5th paradigm except me. Perhaps you have
seen it in my pages where I write "We can dare to
say that C++/CLI is the fifth paradigm of C++".
Yup, that's where I got it. :)

However I do not if this has much scientific basis,
and I am going to remove that line if I get many
complaints about it. :-)

crichmon
Jul 22 '05 #14
Tommy McDaniel wrote:
I saw it on your page the other day, and remember wondering what basis
you had to say that. I'm not telling you what to put and not put on
your page, but maybe the fact that that particular piece stood out to
me also well before reading this means something.

Well, I was thinking it in this way. C++ has already been open for a GC
(TC++PL C.9.1). However when it would get a mainstream supported one?

Only when one such VM had been standardised. So here we are, CLI is a
standard, C++/CLI is an upcoming standard on how to take advantage of
such a CLI when present, with *deterministic* destruction - explicit
delete on GC objects in the managed heap and creation of GC objects in
the stack - with the latest one to be the recommended style of
programming in C++/CLI, with generics (difference from templates is that
generics are executed at run-time while templates at compile-time and
some other restrictions of generics) etc. And of course the ability to
use ISO C++ and C++/CLI mixed (which makes the source code
compilation-portable, while the clean C++/CLI mode makes it possible the
executable itself to be portable across all CLI compliant VMs).

So I do not know if we can call the GC thing a paradigm, but C++/CLI is
a new concept for sure.
BTW yesterday I discovered that Mono ( http://www.mono-project.com )
exists for GNU/Linux, Unix, Mac OS X and Windows itself.

The download page fro this CLI VM is:

http://www.mono-project.com/downloads

Interesting stuff.


Regards,

Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #15
Tommy McDaniel wrote:
Phlip wrote:

crichmon wrote:
What are the 4 paradigms
of C++ and what makes them paradigms?


- procedural. Programs control flow directly
- OO. Programs control flow indirectly, thru virtual methods
- generic. Like OO but bound at compile time

- declarative.


In that case it seems that there is disagreement on the fourth
paradigm. The one I have seen mentioned elsewhere is modular. Maybe
this makes five paradigms.


How could modular be a paradigm? How could a programming language not be
modular? JavaScript is modular.

--
Phlip
http://industrialxp.org/community/bi...UserInterfaces
Jul 22 '05 #16
Ioannis Vranos <iv*@guesswh.at.grad.com> wrote in message news:<cd***********@ulysses.noc.ntua.gr>...
Alf P. Steinbach wrote:
Have you read the paragraph I provided you?

Nope, cause you didn't provide it... :-)


I was talking about this: "In chapter 2 BS explains the paradigms
supported and you can find the modular paradigm on page 26 (2.4)."


Note that Stroustrup no longer emphasises "modular programming" in his
more recent interviews or writings. I'd suppose it was included in
TC++PL to show what he sees as the historical progression from
procedural prgramming to OO.

He writes and talks a lot about the 4 paradigms nowadays:

1) C-Style Programming

2) Data Abstraction

3) OO Prgramming

4) Generic Programming

see, e.g.

http://www.research.att.com/~bs/style_and_libraries.pdf

written in 2002.

What Stroustrup describes as "Data Abstraction" is programming with
standalone concrete classes like std::string. He considers this
programming style to be quite different from OO programming with class
hierarchies. He also thinks that an appropriate emphasis on this
programming style is important to avoid creating unnecessarily complex
class hierarchies. See this interview with him:

http://www.artima.com/intv/goldilocks.html

I happen to agree - even if I'd prefer to use a term like "Class-Based
Programming" to "Data Abstraction".
Jul 22 '05 #17
> He writes and talks a lot about the 4 paradigms nowadays:

1) C-Style Programming

2) Data Abstraction

3) OO Prgramming

4) Generic Programming


That seems to fit the 4 most often used terms for the different paradigms
that C++ allows. Though, I've often seen the term "procedural" programming
for 1) and "Object Based" for 2). If I'm not mistaken, in Lippman's C++
Primer, the section before OO, is titled Object Based Programming.

There also is a lot of work going on to extend C++ into the functional
paradigm, such as Boost's Lamba library and another one called FC++. For
the latter, there is even a library extending FC++ to the declarative or
functional-logic paradigm. Its called LC++:

http://www.cc.gatech.edu/~yannis/lc++/

So it might be the case that C++ has 6 paradigms. If you include the work
going on in "template metaprogramming", which I'm not familiar with yet, and
it in fact extends the template mechanism beyond (good term "meta", since it
is the greek based term for beyond) its orginal design (which I heard it
does), then this might be another paradigm as well. On the new C++/CLI
extensions, its hard to say if it creates another paradigm, but I think it
might, since its goal is to allow all the C++ mechanisms to be run in a
managed run time enviroment and even the ability to run in both the managed
and unmanaged environment. This does in some sense, change the way you
program and the mental model you have of going about it.

Oh yeah, lets not forget there is also an extension to add Aspect Oriented
Programming to C++: http://www.aspectc.org/

So as I see it, here are the paradigms C++ allows:

(1) Proceedural
(2) Object Based (or Data Abstraction)
(3) Object Oriented
(4) Generic
(5) Functional
(6) Declarative
(7) Metaprogramming
(8) Aspect Oriented
(9) Managed Runtime (aka C++/CLI)

I would say the first 4 are the core paradigms, and the last 5 are yet to
have wide spread adoption, though (5), (7), and (9) are strong canidates for
it. Also, (9) is still fuzzy as to whether it is in fact a new paradigm or
just an extension to target a managed environment.

- Don Kim

Jul 22 '05 #18

"Alf P. Steinbach" <al***@start.no> wrote in message
news:40****************@news.individual.net...
* Ioannis Vranos:

Anyway it is an excellent book and I think every C++ programmer should
buy and *read* it.


Yes, I agree.


How can you agree if you've neither bought it nor read it? The guy provides
you with chapter and verse for you to look up, you fail to do so, yet keep
arguing with him.
Jul 22 '05 #19

"Uwe Schnitker" <sc********************@sigma-c.com> wrote in message
news:30**************************@posting.google.c om...

He writes and talks a lot about the 4 paradigms nowadays:

1) C-Style Programming

2) Data Abstraction

3) OO Prgramming

4) Generic Programming
I happen to agree - even if I'd prefer to use a term like "Class-Based
Programming" to "Data Abstraction".


class-based programming = object-based programming (as opposed to
object-oriented programming), so I don't really see how this is a separate
paradigm since OO "includes" it.
Jul 22 '05 #20
* jeffc:

"Alf P. Steinbach" <al***@start.no> wrote in message
news:40****************@news.individual.net...
* Ioannis Vranos:

Anyway it is an excellent book and I think every C++ programmer should
buy and *read* it.


Yes, I agree.


How can you agree if you've neither bought it nor read it? The guy provides
you with chapter and verse for you to look up, you fail to do so, yet keep
arguing with him.


It so happens that your assumptions _and_ allegations are incorrect.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #21

"Alf P. Steinbach" <al***@start.no> wrote in message
news:40****************@news.individual.net...

How can you agree if you've neither bought it nor read it? The guy provides you with chapter and verse for you to look up, you fail to do so, yet keep arguing with him.
It so happens that your assumptions _and_ allegations are incorrect.


Really? From this thread...
Have you read the paragraph I provided you?
Nope
In case you do not have this book


I don't.
Jul 22 '05 #22
* jeffc:

"Alf P. Steinbach" <al***@start.no> wrote in message
news:40****************@news.individual.net...

How can you agree if you've neither bought it nor read it? The guy provides you with chapter and verse for you to look up, you fail to do so, yet keep arguing with him.


It so happens that your assumptions _and_ allegations are incorrect.


Really? From this thread...
Have you read the paragraph I provided you?


Nope
In case you do not have this book


I don't.


That is correct.

Your assumptions and earlier allegations are not.

Hth.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #23

"Alf P. Steinbach" <al***@start.no> wrote in message
news:40****************@news.individual.net...

That is correct.

Your assumptions and earlier allegations are not.


In that case, it would be best if you went and played with yourself back in
your cave somewhere.
Jul 22 '05 #24
* jeffc:

"Alf P. Steinbach" <al***@start.no> wrote in message
news:40****************@news.individual.net...

That is correct.

Your assumptions and earlier allegations are not.


In that case, it would be best if you went and played with yourself back in
your cave somewhere.


Plonk.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #25
> > Yes C++ is a multiparadigm language and currently supports 4 paradigms.
The procedural paradigm (functions etc), the modular paradigm
(namespaces), the object oriented paradigm and the generic programming
paradigm (templates). Each paradigm is supported well with optimal space
and time efficiencies.
I didn't know that.

But certainly it's not something everyone agrees on.

For example, I absolutely do not agree that C++ "supports" modular
programming, since there _is_ no module concept in C++. However,


sure: namespaces

put the public interface of your "module" into one namespace,
and the implementation into a second which drags in the interface
from the first. you'll end up with strict encapsulation of
functions, types, .. in one scope
C++ allows you to fake some of it by strictly following some set of
no need to fake .. namespace/using is all you need
i guess the keywords are a bit distracting .. take those
synonyms:

module := namespace
import := using
conventions (header file guards etc.). That's in the same spirit
as assembler language supports object-orientation (even old TASM).


headers are indeed a pain in the ass. "all" that would be needed
to get rid of them would be the compiler to spill out full static
type information into an object file for the linker to consume.

in .NET/CLI, thats "manifests"
in COM thats type libraries (TLBs)
in Java its in the class files itself

the important point to note of course: headers are not required
or defined by the C++ language standard, just happen to be
a widely deployed implementation artifact.

IMHO the two biggest failures of C++ standardization:

1. lack of ABI standardization
2. lack of full static type, standardized (per platform)
information in object files

1. would have prevented MS from inventing COM (a workaround for 1.)
2. would considerable lower complexity in build process
Jul 22 '05 #26
poiuz24 wrote:
IMHO the two biggest failures of C++ standardization:

1. lack of ABI standardization
2. lack of full static type, standardized (per platform)
information in object files

1. would have prevented MS from inventing COM (a workaround for 1.)
2. would considerable lower complexity in build process


Forgive me to say that, but your above words clearly show an absolute lack
of perspective on the topic. C++ is not a Windows only programming
language. The ABI standardization you are looking for is not even there for
the C language, on the Windows platform. That did not stop it from being
used there.

The C++ standard defines a programming language. Not a compiler, not a
linker, but a language. A language as the characters which make it up, and
their meaning. Having an ABI etc. falls into the hands of the platform
provider. If there is enough demand, they will make it work. Some may call
this a quality of implementation issue.

--
WW aka Attila
:::
31.69 nHz = once a year.
Jul 22 '05 #27

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

Similar topics

10
1724
by: John Benson | last post by:
Hi, I see a lot of posts asking about "the best Python book." In my experience, there is no such thing, but there are a lot of good books that will help you along in different ways, and at...
0
1210
by: MPOOL'03 Organizers | last post by:
We apologize if you receive this CfP multiple times * Please distribute ! -------------------------------------------------------------------------- CALL FOR PAPERS Workshop on ...
0
1246
by: MPOOL'03 Organizers | last post by:
We apologize if you receive this CfP multiple times * Please distribute ! -------------------------------------------------------------------------- CALL FOR PAPERS Workshop on ...
0
1420
by: Jörg Striegnitz | last post by:
We apologize if you have received this CfP multiple times. -------------------------------------------------------------------- SECOND CALL FOR CONTRIBUTIONS AND PARTICIPATION Workshop on...
65
4201
by: Roger Smythe | last post by:
A means for the progressive decomposition a problem space into increasingly simpler component parts such that these component parts represent higher levels of conceptual abstraction, and are...
22
1555
by: Corey C. Carter | last post by:
I am new to programming. Over the years I have "tried" many langauges such as basic, pascal(yea yea, I know, out of date), python and C. I was under the impression that one must lean C before...
0
781
by: Jo Blow | last post by:
Hi All, I have a client that has written a specification for a Database system comprising of 9 seperate MS Access Applications distributed throughout a group of Hospitals. I have proposed that a...
109
4409
by: jacob navia | last post by:
A recent article on CNN described the problem that phone makers are facing. (http://www.cnn.com/2006/TECH/biztech/05/29/cellphone.usability.ap/index.html) Most people are rejecting the new...
2
1078
dmjpro
by: dmjpro | last post by:
I have a confusion to understand the two basic terms .... programming paradigms and programming technology. I need the technical differences. plz help. kind regards. dmjpro.
0
7115
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
7321
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
7377
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...
0
7489
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5624
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,...
0
3191
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...
0
3179
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1547
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 ...
0
414
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...

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.