473,488 Members | 2,464 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

alphabet q

"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe
May 24 '06 #1
31 2623
Joe Smith wrote:

"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe


Define "alphabet".

Also, a quick scan shows no '@' or '$'.

--
+-------------------------+--------------------+-----------------------------+
| Kenneth J. Brody | www.hvcomputer.com | |
| kenbrody/at\spamcop.net | www.fptech.com | #include <std_disclaimer.h> |
+-------------------------+--------------------+-----------------------------+
Don't e-mail me at: <mailto:Th*************@gmail.com>

May 24 '06 #2
In article <44***********************@news.usenetmonster.com> ,
Joe Smith <gr**********@netzero.net> wrote:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\" Do the above string literals comprise an alphabet for C? joe


You don't need to backslash the bar character in any literal form.

You don't need to backslash the single-quote within a string literal.

You don't need to backslash the question-mark in that context,
only if it is followed by another question-mark (in which case
triglyphs would start coming into play).

With regard to that last string: in the source character set,
space and the control characters representing horizontal tab,
vertical tab, and form feed are valid, but newline is not
explicitly valid -- only "some way of indicating the
end of each line of text"; the standard treats each end of line
as if were a single new-line character. If you happened to be
using a system with fixed length records, then an occurance
of a newline in the source would not necessarily be valid! Likewise,
carriage return is not explicitly valid in source text except to the
extent that that particular system happens to include carriage return
in the end of line indicator.
--
All is vanity. -- Ecclesiastes
May 24 '06 #3


Joe Smith wrote On 05/24/06 14:06,:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe


No {obviously}. Why do you ask?

--
Er*********@sun.com

May 24 '06 #4
Kenneth Brody said:
Joe Smith wrote:

"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe


Define "alphabet".

Also, a quick scan shows no '@' or '$'.


Neither of those appears in the guaranteed C source character set.
--
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)
May 24 '06 #5
In article <44***************@spamcop.net>,
Kenneth Brody <ke******@spamcop.net> wrote:
Joe Smith wrote:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\" Do the above string literals comprise an alphabet for C? joe

Define "alphabet". Also, a quick scan shows no '@' or '$'.


Neither @ nor $ are part of C's basic source character set. Any
occurance of either outside of a character constant,
string ltieral, header name, comment, or
"preprocessing token that is never converted to a token" (whatever that
means), results in undefined behaviour.
--
If you lie to the compiler, it will get its revenge. -- Henry Spencer
May 24 '06 #6
Kenneth Brody <ke******@spamcop.net> writes:
Joe Smith wrote:

"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe


Define "alphabet".

Also, a quick scan shows no '@' or '$'.


Hmm, these are not "needed" for C are they...

Seems a waste of good characters to me. C does make admirable use of
the symbols that most unenlightened folk would have no clue where to
find on their keyboard. But @ and $, also ` and ¬ are sadly neglected
by the C language, in my opinion.

Surely this situation cries out for some new operators to be added to
the language.
--

John Devereux
May 24 '06 #7


Eric Sosman wrote On 05/24/06 14:24,:

Joe Smith wrote On 05/24/06 14:06,:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe

No {obviously}. Why do you ask?


Hmmm -- not so obvious (I looked for something and
didn't find it, but it was there anyhow -- my eyes are
exhibiting undefined behavior ...). Still: Why do you
ask? Section 5.2.1 has the entire list if you want it.

--
Er*********@sun.com

May 24 '06 #8


John Devereux wrote On 05/24/06 14:42,:
Kenneth Brody <ke******@spamcop.net> writes:

Joe Smith wrote:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe


Define "alphabet".

Also, a quick scan shows no '@' or '$'.



Hmm, these are not "needed" for C are they...

Seems a waste of good characters to me. C does make admirable use of
the symbols that most unenlightened folk would have no clue where to
find on their keyboard. But @ and $, also ` and ¬ are sadly neglected
by the C language, in my opinion.

Surely this situation cries out for some new operators to be added to
the language.


Good idea. Let's pick an unused character like ÷ and
use it for the long-desired exponentiation operator ...

--
Er*********@sun.com

May 24 '06 #9

"Eric Sosman" <Er*********@sun.com> wrote in message
news:1148496239.314325@news1nwk...


Eric Sosman wrote On 05/24/06 14:24,:

Joe Smith wrote On 05/24/06 14:06,:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe

No {obviously}. Why do you ask?


Hmmm -- not so obvious (I looked for something and
didn't find it, but it was there anyhow -- my eyes are
exhibiting undefined behavior ...). Still: Why do you
ask? Section 5.2.1 has the entire list if you want it.


The short answer to motivation is, as usual, that I'm not getting something.
Since having made the original query, I've been going back and forth on
whether backslash zero was its own character. How much larger is the list
in sec 5.2.1 than mine? Finally, how usable is the soft version of the
Standard? joe
May 24 '06 #10

"Walter Roberson" <ro******@ibd.nrc-cnrc.gc.ca> wrote in message
news:e5**********@canopus.cc.umanitoba.ca...
In article <44***********************@news.usenetmonster.com> ,
Joe Smith <gr**********@netzero.net> wrote:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"
Do the above string literals comprise an alphabet for C? joe


You don't need to backslash the bar character in any literal form.

You don't need to backslash the single-quote within a string literal.

You don't need to backslash the question-mark in that context,
only if it is followed by another question-mark (in which case
triglyphs would start coming into play).

With regard to that last string: in the source character set,
space and the control characters representing horizontal tab,
vertical tab, and form feed are valid, but newline is not
explicitly valid -- only "some way of indicating the
end of each line of text"; the standard treats each end of line
as if were a single new-line character. If you happened to be
using a system with fixed length records, then an occurance
of a newline in the source would not necessarily be valid! Likewise,
carriage return is not explicitly valid in source text except to the
extent that that particular system happens to include carriage return
in the end of line indicator.
--


You seem to be right about the part that I was able to understand:
char m[] = "\a\b\f\n\r\t\v\\a'a\'a";
This gives the first seven characters that I would call formatting
characters, then the backslash.
the ' and the \' are each taken as single characters, indeed the same
character. It hardly seems possible to me that C could port anywhere
without an explicitly valid newline. joe
------------ All is vanity. -- Ecclesiastes

^^ <--The glory of man ...
May 24 '06 #11


Joe Smith wrote On 05/24/06 15:31,:
"Eric Sosman" <Er*********@sun.com> wrote in message
news:1148496239.314325@news1nwk...

Eric Sosman wrote On 05/24/06 14:24,:
Joe Smith wrote On 05/24/06 14:06,:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe
No {obviously}. Why do you ask?
Hmmm -- not so obvious (I looked for something and
didn't find it, but it was there anyhow -- my eyes are
exhibiting undefined behavior ...). Still: Why do you
ask? Section 5.2.1 has the entire list if you want it.



The short answer to motivation is, as usual, that I'm not getting something.
Since having made the original query, I've been going back and forth on
whether backslash zero was its own character.


Backslash zero is in the required "execution character
set," but not in the "source character set." Some of the
characters in your list (\a \b \n \r) are the same: required
in the execution character set, but not in the source set.

The status of \n is a bit convoluted: It is required to
be present in the execution character set, but is not listed
among the characters required for the source set. In fact,
its use in source is governed by 5.2.1/3:

If any other characters are encountered in a source
file (except in an identifier, a character constant,
a string literal, a header name, a comment, or a
preprocessing token that is never converted to a
token), the behavior is undefined.

Yet the same paragraph also states

... this Standard treats each end-of-line indicator
as if it were a single new-line character.

I think this apparent contradiction is resolved by considering
\n only in its special role as a line terminator, and not as
a character per se. That is, on a system that uses a different
line-ending convention, an "embedded" \n character would produce
undefined behavior. For example, if some system defines a "line"
as a two-digit character count followed by the characters, the
lines

10if (a < 0)12 abort();

could be valid but the single line

23if (a < 0)§ abort();

(where § indicates the position of a newline character) would
lead to undefined behavior.
How much larger is the list
in sec 5.2.1 than mine?
5.2.1 describes the source character set as containing
fifty-two letters, ten digits, twenty-nine graphics, the
space character, and the three control characters \t \v \f.
The execution character set contains all these plus \a \b
\r \n \0. These constitute the "basic" source and execution
character sets; an implementation may extend either or both
with additional characters.
Finally, how usable is the soft version of the
Standard? joe


Depends on one's purposes, I guess. It seems usable
for most of mine; YMMV.

--
Er*********@sun.com

May 24 '06 #12
ro******@ibd.nrc-cnrc.gc.ca (Walter Roberson) writes:
In article <44***********************@news.usenetmonster.com> ,
Joe Smith <gr**********@netzero.net> wrote: [...]
Do the above string literals comprise an alphabet for C? joe

[...] You don't need to backslash the question-mark in that context,
only if it is followed by another question-mark (in which case
triglyphs would start coming into play).
Trigraphs, not triglyphs.
With regard to that last string: in the source character set,
space and the control characters representing horizontal tab,
vertical tab, and form feed are valid, but newline is not
explicitly valid -- only "some way of indicating the
end of each line of text"; the standard treats each end of line
as if were a single new-line character. If you happened to be
using a system with fixed length records, then an occurance
of a newline in the source would not necessarily be valid! Likewise,
carriage return is not explicitly valid in source text except to the
extent that that particular system happens to include carriage return
in the end of line indicator.


You're assuming that Joe is asking about the source character set
rather than the execution character set. Given the way he asked the
question, it's not clear to me just what he's asking.

The C standard does use the term "alphabet"; C99 5.2.1 refers to the
26 uppercase letters and the 26 lowercase letters of the Latin
alphabet.

Joe needs to tell us what he means by "an alphabet for C", or to ask a
different question. Or he can read section 5.2.1 of either the C90
standard or the C99 standard (for the latter, I recommend n1124.pdf).

To answer Joe's question from another followup in this thread, C99
5.2.1p2 says:

A byte with all bits set to 0, called the _null character_, shall
exist in the basic execution character set; it is used to
terminate a character string.

The null character is not in the basic source character set; the
character constant '\0' is used to represent it.

--
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.
May 24 '06 #13

"Keith Thompson" <ks***@mib.org> wrote in message
ro******@ibd.nrc-cnrc.gc.ca (Walter Roberson) writes:
Joe Smith <gr**********@netzero.net> wrote:
Do the above string literals comprise an alphabet for C? joe
You don't need to backslash the question-mark in that context,
only if it is followed by another question-mark (in which case
triglyphs would start coming into play).
Trigraphs, not triglyphs.

Trigraphs are not what I'm after. I'm hoping, that at the end of this
thread, when I get what I'm talking about, I can do this.
With regard to that last string: in the source character set,
space and the control characters representing horizontal tab,
vertical tab, and form feed are valid, but newline is not
explicitly valid -- only "some way of indicating the
end of each line of text"; the standard treats each end of line
as if were a single new-line character. If you happened to be
using a system with fixed length records, then an occurance
of a newline in the source would not necessarily be valid! Likewise,
carriage return is not explicitly valid in source text except to the
extent that that particular system happens to include carriage return
in the end of line indicator.

For my purposes, and it might be here noted that my purpose is not to
influence the Standard as much as adhere to it, I'm going to take all five
of the above mentioned source characters, and it is a headcount of source
characters that I am primarily after.
You're assuming that Joe is asking about the source character set
rather than the execution character set. Given the way he asked the
question, it's not clear to me just what he's asking. I wouldn't mind knowing more about the execution set, if you felt like
talking about it.
The C standard does use the term "alphabet"; C99 5.2.1 refers to the
26 uppercase letters and the 26 lowercase letters of the Latin
alphabet.

Joe needs to tell us what he means by "an alphabet for C", or to ask a
different question. Or he can read section 5.2.1 of either the C90
standard or the C99 standard (for the latter, I recommend n1124.pdf).

To answer Joe's question from another followup in this thread, C99
5.2.1p2 says:

A byte with all bits set to 0, called the _null character_, shall
exist in the basic execution character set; it is used to
terminate a character string.

The null character is not in the basic source character set; the
character constant '\0' is used to represent it.


26 + 26 + 10 + 1 + 29 + 5 <--is that going to sum to the number of source
characters, given the above? joe
May 24 '06 #14

"Eric Sosman" <Er*********@sun.com> wrote in message
news:1148501625.250393@news1nwk...
Joe Smith wrote On 05/24/06 15:31,:
"Eric Sosman" <Er*********@sun.com> wrote in message
news:1148496239.314325@news1nwk...

Eric Sosman wrote On 05/24/06 14:24,:
Joe Smith wrote On 05/24/06 14:06,:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe
No {obviously}. Why do you ask?
Hmmm -- not so obvious (I looked for something and
didn't find it, but it was there anyhow -- my eyes are
exhibiting undefined behavior ...). Still: Why do you
ask? Section 5.2.1 has the entire list if you want it.

The short answer to motivation is, as usual, that I'm not getting
something.
Since having made the original query, I've been going back and forth on
whether backslash zero was its own character.


Backslash zero is in the required "execution character
set," but not in the "source character set." Some of the
characters in your list (\a \b \n \r) are the same: required
in the execution character set, but not in the source set.

The status of \n is a bit convoluted: It is required to
be present in the execution character set, but is not listed
among the characters required for the source set. In fact,
its use in source is governed by 5.2.1/3:

If any other characters are encountered in a source
file (except in an identifier, a character constant,
a string literal, a header name, a comment, or a
preprocessing token that is never converted to a
token), the behavior is undefined.

Yet the same paragraph also states

.... this Standard treats each end-of-line indicator
as if it were a single new-line character.

I think this apparent contradiction is resolved by considering
\n only in its special role as a line terminator, and not as
a character per se. That is, on a system that uses a different
line-ending convention, an "embedded" \n character would produce
undefined behavior. For example, if some system defines a "line"
as a two-digit character count followed by the characters, the
lines

10if (a < 0)12 abort();

could be valid but the single line

23if (a < 0)§ abort();

(where § indicates the position of a newline character) would
lead to undefined behavior.
How much larger is the list
in sec 5.2.1 than mine?
5.2.1 describes the source character set as containing
fifty-two letters, ten digits, twenty-nine graphics, the
space character, and the three control characters \t \v \f.
The execution character set contains all these plus \a \b
\r \n \0. These constitute the "basic" source and execution
character sets; an implementation may extend either or both
with additional characters.
Finally, how usable is the soft version of the
Standard? joe


Depends on one's purposes, I guess. It seems usable
for most of mine; YMMV.

/* begin reply */
I seem to be additionally confused by my newsreader today, as I'm not seeing
the '>' as I would expect. My guess is that the execution char set is going
to the the chars that C requires from its environment, in my case, an OS.
Can a person determine the status of '\n' using #ifdefs? joe
---------
YMMV
you might move volvos?
your mother makes volleyballs?
May 25 '06 #15
In article <44**********************@news.usenetmonster.com >,
Joe Smith <gr**********@netzero.net> wrote:
My guess is that the execution char set is going
to the the chars that C requires from its environment, in my case, an OS.
As far as the C standard is concerned, it is valid to compile on one
system using one character set for the source, and to execute on
a different system that uses a different character set for the
execution. In such a situation, though, there would need to be enough
coordination in the cross-compilation process so that character
constants and string literals held the correct values for the
execution target.

Can a person determine the status of '\n' using #ifdefs? joe


No, because what is output for \n depends upon whether the stream
is binary or text -- and it doesn't necessarily expand to anything
at all, if the file happens to be use fixed-length records or
counted-length records or some other unusual format. The underlying
end-of-line representation for any particular file can vary from file
to file in ways that are essentially unpredictable (e.g., determined
by a JCL DD statement.)
--
Prototypes are supertypes of their clones. -- maplesoft
May 25 '06 #16


Joe Smith wrote On 05/25/06 12:46,:
[garbled quoting snipped for clarity's sake; see up-thread]

/* begin reply */
I seem to be additionally confused by my newsreader today, as I'm not seeing
the '>' as I would expect. My guess is that the execution char set is going
to the the chars that C requires from its environment, in my case, an OS.

C is sometimes used as a cross-compiled language, where
a compiler on one system produces a program to be executed
on a dissimilar system. This sort of thing is quite common
when C programs are written to be executed in free-standing
"embedded" systems, whose hardware may be well-suited to
operating your microwave oven but ill-adapted for the job
of running a C compiler. You build the program on a machine
that has niceties like editors, compilers, file systems, and
so on, and then you (somehow) transfer the generated code
to the target machine and execute it there.

This raises the possibility that the system where the
compiler operates may use a different character set than the
system where the program runs, so the Standard is careful to
distinguish the "source character set" (the alphabet in which
the program source is written) from the "execution character
set" (the set of characters the program can use while running).
Not only can the encodings of the characters differ in the two
environments ('0' might be 48 in the source set and 240 in the
execution set), but the repertoire of available characters can
also be different.

The Standard enumerates the minimum required contents of
the two character sets. As you can see, there is a lot of
overlap; in fact, all the required source characters are also
required to exist in the execution set. (One imagines this is
to ensure that a C compiler can be written in C.) A small
number of execution-set characters, though, are not necessary
for the task of writing C source: there's little reason to
want a backspace character as part of the source alphabet, for
example. (A whimisical idea: considering how widely casts are
misused, perhaps the spelling of the cast operator ought to
involve the \a character!)
Can a person determine the status of '\n' using #ifdefs? joe
I'm afraid I don't understand the question. The execution
character set must include the newline character, so its status
is "present" in any conforming C implementation. Its role in
the source character set is a little strange, but that role
doesn't change from one implementation to the next. Its role
in the externally-stored format of C source may (does) differ
from system to system, but Translation Phase 1 smooths such
differences away -- and since #ifdefs aren't processed until
Phase 4, there are no differences left for them to test.
YMMV
you might move volvos?
your mother makes volleyballs?


Yankees in 2005. (Not!)

--
Er*********@sun.com

May 25 '06 #17

"Eric Sosman" <Er*********@sun.com>
Joe Smith wrote On 05/25/06 12:46,:
[garbled quoting snipped for clarity's sake; see up-thread] I think my newsreader's got a mind of its own. If anyone would like to
recommend one that contributes to usenet clarity, I'm all ears.

/* begin reply */
I seem to be additionally confused by my newsreader today, as I'm not
seeing
the '>' as I would expect. My guess is that the execution char set is
going
to the the chars that C requires from its environment, in my case, an OS.
C is sometimes used as a cross-compiled language, where
a compiler on one system produces a program to be executed
on a dissimilar system. This sort of thing is quite common
when C programs are written to be executed in free-standing
"embedded" systems, whose hardware may be well-suited to
operating your microwave oven but ill-adapted for the job
of running a C compiler. You build the program on a machine
that has niceties like editors, compilers, file systems, and
so on, and then you (somehow) transfer the generated code
to the target machine and execute it there. And this (somehow) is OT, right?
This raises the possibility that the system where the
compiler operates may use a different character set than the
system where the program runs, so the Standard is careful to
distinguish the "source character set" (the alphabet in which
the program source is written) from the "execution character
set" (the set of characters the program can use while running).
Not only can the encodings of the characters differ in the two
environments ('0' might be 48 in the source set and 240 in the
execution set), but the repertoire of available characters can
also be different. The Standard enumerates the minimum required contents of
the two character sets. As you can see, there is a lot of
overlap; in fact, all the required source characters are also
required to exist in the execution set. (One imagines this is
to ensure that a C compiler can be written in C.) A small
number of execution-set characters, though, are not necessary
for the task of writing C source: there's little reason to
want a backspace character as part of the source alphabet, for
example. (A whimisical idea: considering how widely casts are
misused, perhaps the spelling of the cast operator ought to
involve the \a character!)
Can a person determine the status of '\n' using #ifdefs? joe


I'm afraid I don't understand the question. The execution
character set must include the newline character, so its status
is "present" in any conforming C implementation. Its role in
the source character set is a little strange, but that role
doesn't change from one implementation to the next. Its role
in the externally-stored format of C source may (does) differ
from system to system, but Translation Phase 1 smooths such
differences away -- and since #ifdefs aren't processed until
Phase 4, there are no differences left for them to test.

The question was whether a macro would be of use, but you and Mr. Roberson
are confident that it won't be. I should have known it was determined by a
JCL DD statement:-) The motivation for the original question was rooted in
a weak understanding of source vs. execution sets. Thanks for your help.
joe
-------- YMMV
you might move volvos?
your mother makes volleyballs?


Yankees in 2005. (Not!)

~YMMVI , because it's going to
be the south side of the windy city
May 25 '06 #18
Joe Smith wrote:
"Eric Sosman" <Er*********@sun.com>
Joe Smith wrote On 05/25/06 12:46,:
[garbled quoting snipped for clarity's sake; see up-thread]


I think my newsreader's got a mind of its own. If anyone would like to
recommend one that contributes to usenet clarity, I'm all ears.

Mozilla/Thunderbird. Does just about everything right out of the box.

--
Ian Collins.
May 25 '06 #19

"Ian Collins" <ia******@hotmail.com>
Joe Smith wrote:
"Eric Sosman" <Er*********@sun.com>
Joe Smith wrote On 05/25/06 12:46,:

[garbled quoting snipped for clarity's sake; see up-thread]


I think my newsreader's got a mind of its own. If anyone would like to
recommend one that contributes to usenet clarity, I'm all ears.

Mozilla/Thunderbird. Does just about everything right out of the box.


And where do I procure this box? joe
May 25 '06 #20
Joe Smith wrote:
"Ian Collins" <ia******@hotmail.com>
Joe Smith wrote:
"Eric Sosman" <Er*********@sun.com>

Joe Smith wrote On 05/25/06 12:46,:
>[garbled quoting snipped for clarity's sake; see up-thread]

I think my newsreader's got a mind of its own. If anyone would like to
recommend one that contributes to usenet clarity, I'm all ears.


Mozilla/Thunderbird. Does just about everything right out of the box.


And where do I procure this box? joe

http://www.mozilla.org/

--
Ian Collins.
May 25 '06 #21
"Joe Smith" <gr**********@netzero.net> writes:
"Ian Collins" <ia******@hotmail.com>
Joe Smith wrote:
"Eric Sosman" <Er*********@sun.com>

Joe Smith wrote On 05/25/06 12:46,:

>[garbled quoting snipped for clarity's sake; see up-thread]

I think my newsreader's got a mind of its own. If anyone would like to
recommend one that contributes to usenet clarity, I'm all ears.

Mozilla/Thunderbird. Does just about everything right out of the box.


And where do I procure this box? joe


There is no box. You can download it from <http://www.mozilla.com/>.

--
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.
May 25 '06 #22
Joe Smith wrote:
...my purpose is not to influence the Standard as much as adhere to it
...I wouldn't mind knowing more about the execution set, if you felt like
talking about it.


Why not look it up yourself? Even if you don't want to purchase the
standard itself, you can obtain a draft like n1124.pdf and read all
about it in 5.2.

--
Peter

May 25 '06 #23

"Keith Thompson" <ks***@mib.org> wrote
>Joe Smith wrote On 05/25/06 12:4 [snip]
[garbled quoting snipped for clarity's sake; see up-thread]
There is no box. You can download it from <http://www.mozilla.com/>.


The download begins presently. Would you, as a person who rubs his eyes
reading clc as much as anyone, have anything topical to say about settings?
joe
May 25 '06 #24

"Eric Sosman"
John Devereux wrote On 05/24/06 14:42,:
Kenneth Brody <ke******@spamcop.net> writes:

Joe Smith wrote:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789"
" "
"!#%^&*()-_"
"+=~[]\|;:\'"
"\"{},.<>/\?"
"\a\b\f\n\r\t\v\\"

Do the above string literals comprise an alphabet for C? joe


Define "alphabet".

Also, a quick scan shows no '@' or '$'.

Hmm, these are not "needed" for C are they...

Seems a waste of good characters to me. C does make admirable use of
the symbols that most unenlightened folk would have no clue where to
find on their keyboard. But @ and $, also ` and ¬ are sadly neglected
by the C language, in my opinion.

Surely this situation cries out for some new operators to be added to
the language.


Good idea. Let's pick an unused character like ÷ and
use it for the long-desired exponentiation operator ...
// begin reply
#define truetype
I was programming for Leroy in '83
I heard a song on the radio that advocated that
"we multiply by the power of two" .
That formulation annoyed me until
I realized that it was being sung by lesbians,
not scientists.

I programmed, cut wood with the Labrador.
The shadow of Rainier.

My claim is that an inappropriate number of '>' 's occurs in this response.
joe
May 25 '06 #25
"Joe Smith" <gr**********@netzero.net> writes:
"Keith Thompson" <ks***@mib.org> wrote
>>Joe Smith wrote On 05/25/06 12:4 [snip]
>[garbled quoting snipped for clarity's sake; see up-thread]

There is no box. You can download it from <http://www.mozilla.com/>.


The download begins presently. Would you, as a person who rubs his eyes
reading clc as much as anyone, have anything topical to say about settings?
joe


There is nothing topical here to say about Mozilla/Thunderbird
settings. (I don't read Usenet with Thunderbird, so I wouldn't be
able to answer even if it were topical.)

--
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.
May 25 '06 #26
Joe Smith wrote:
.... snip ...
I think my newsreader's got a mind of its own. If anyone would
like to recommend one that contributes to usenet clarity, I'm all
ears.


You are using OE, which is known to be evil. Get Thunderbird, from
mozilla.org.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>
Also see <http://www.safalra.com/special/googlegroupsreply/>
May 26 '06 #27

"CBFalconer"
Joe Smith wrote:
... snip ...

I think my newsreader's got a mind of its own. If anyone would
like to recommend one that contributes to usenet clarity, I'm all
ears.


You are using OE, which is known to be evil. Get Thunderbird, from
mozilla.org.

[snip> --] "If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>
Also see <http://www.safalra.com/special/googlegroupsreply/>


Google's my home page. Of the relevance of the presnipped above, I am
uncertain. My guess is that clc is telling you to get your act together.
Downloading Thunderbird tomorrow. How do you know I was using OE, besides
the obvious? joe
May 26 '06 #28
In article <44**********************@news.usenetmonster.com > "Joe Smith" <gr**********@netzero.net> writes:
....
Good idea. Let's pick an unused character like ÷ and
use it for the long-desired exponentiation operator ...


A mathematician would shudder. That is more close to integer division.
--
dik t. winter, cwi, kruislaan 413, 1098 sj amsterdam, nederland, +31205924131
home: bovenover 215, 1025 jn amsterdam, nederland; http://www.cwi.nl/~dik/
May 26 '06 #29
CBFalconer wrote:
Joe Smith wrote:

... snip ...
I think my newsreader's got a mind of its own. If anyone would
like to recommend one that contributes to usenet clarity, I'm all
ears.

You are using OE, which is known to be evil. Get Thunderbird, from
mozilla.org.

And allow it on installation to copy things
from OE.
May 26 '06 #30
Joe Smith wrote:
How do you know I was using OE, besides
the obvious?


This obvious?
X-Newsreader: Microsoft Outlook Express 6.00.2900.2869

Or do you mean some other obvious?

--
pete
May 26 '06 #31
"Joe Smith" <gr**********@netzero.net> writes:
"CBFalconer"
Joe Smith wrote:
... snip ...

I think my newsreader's got a mind of its own. If anyone would
like to recommend one that contributes to usenet clarity, I'm all
ears.


You are using OE, which is known to be evil. Get Thunderbird, from
mozilla.org.

[snip> --]
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>
Also see <http://www.safalra.com/special/googlegroupsreply/>


Google's my home page. Of the relevance of the presnipped above, I am
uncertain. My guess is that clc is telling you to get your act together.


Its his signature. If it's not relevant to you, just ignore it.
Downloading Thunderbird tomorrow. How do you know I was using OE, besides
the obvious? joe


Each article you post has the following header line:

X-Newsreader: Microsoft Outlook Express 6.00.2900.2869

--
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.
May 26 '06 #32

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

Similar topics

5
6630
by: Stefan Krah | last post by:
Hello, I am currently writing code where it is convenient to convert char to int . The conversion function relies on a character set with contiguous alphabets. int set_mesg(Key *key, char...
12
14490
by: one | last post by:
greetings i am just wondering if some expert here can either show me how to do this or point me to the right direction (url... i want to use c# to generate a list of alphabet e.g A B C ... AA...
8
3233
by: Jack Addington | last post by:
I want to scroll through the alphabet in order to scroll some data to the closest name that starts with a letter. If the user hits the H button then it should scroll to the letter closest to H. ...
9
11197
by: booksnore | last post by:
I am writing some code to search for strings that contain every letter of the alphabet. At the moment I am using the method below to check to see if a string contains every letter of the alphabet....
0
2957
by: rockdale | last post by:
Hi, all: I implemented an alphabet list so that when user click letter A then I will re-bind a gridview control using SQL stored procedure. It works fine. The problem is I populate my alphabet...
1
1761
by: kannabiran | last post by:
Hi, Im using C# ASP.Net here in the textbox i need to get the input as like follows ,any alphabet or any alphabet,any alphabet for example ,C or C,E like this i want to get the input.The...
12
2957
by: paitoon | last post by:
Hi, I got a little bit problem about search result in my site. When i put the keyword and click on search ....everything work fine i got the correct result but they not order by the keyword,but...
20
18994
by: geebanga88 | last post by:
HI i have a method that is supose to store the alphabet in an array however dont think that it is being added to the array. public static void GetAlphabet (char alphabet) { int...
3
3067
by: sivadhanekula | last post by:
Hi all I am working on excel, Macros with vb6....When I was writing the for loop I got stuck with getting the next alphabet...Like I need to extract the data from a database and I need to split...
0
6967
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
7181
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...
1
6847
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...
0
7352
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...
1
4875
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4565
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...
0
3078
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
3071
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
272
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.