How to pronounce C++

Started by
40 comments, last by computer_guy 20 years, 9 months ago
quote:
This is where your misunderstanding lies. In the passage we are discussing the mention of the word `copy' is non-normative. You are taking it to mean that a C++ copy must be performed.

Ah... now I see what you are saying. Yeah I have to concede the point (for built-in types), but for user-defined types you must admit that copy refers to a literal copy (if only because it all happens in one function which returns by value). I just took the use of the copying to mean that it would be the same for the builtins.

quote:
No, what part of my post makes you think that?

The scrabbling around for evidence came across a little harsh.

Pete, now understanding things more clearly

[edited by - Peter Vidler on July 11, 2003 8:14:16 AM]
Advertisement
I think it''s to do with what processor you''re running the compiler on:

If C++ is run on a 6502 for example it would be called:

ORG C = $FF
ORG $C000
LDA ($FF)
INC A





This topic is closed to new replies.

Advertisement