Browse thread
Array 4 MB size limit
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Oliver Bandel <oliver@f...> |
| Subject: | Re: [Caml-list] Re: immutable strings (Re: Array 4 MB size limit) |
On Thu, May 25, 2006 at 07:14:55AM -0400, Brian Hurt wrote:
[...]
> Note that even pure-imperitive languages, like C/C++, hit this problem.
> What is the output of the following peice of C code:
> for (i = 0; i < 10; ++i) {
> char * p = "foo";
> p[0] += 1;
> printf("%s\n", p);
> }
[...]
Heheh, this brings a "Bus Error" (which one might call an "exception" ;-)
(an exception th C'ish way)).
Ciao,
Oliver