Re: char**
- From: Barry Schwarz <schwarzb@xxxxxxxx>
- Date: Sat, 30 Aug 2008 18:19:00 -0700
On Sat, 30 Aug 2008 10:55:21 +0000, Richard Heathfield
<rjh@xxxxxxxxxxxxxxx> wrote:
MN said:
I have a question :
How to understand the mean of char** type ?
char is a type - objects of that type are 1 byte in size and can contain as
their value any single member of the execution character set.
char is an integer type and an object of that type can contain any
value between CHAR_MIN and CHAR_MAX, inclusive (independent of whether
the value represents a member of the execution character set).
char * is a type - objects of that type are sizeof(char *) bytes in size,
and can contain as their value the address of a single char.
char ** is a type - objects of that type are sizeof(char **) bytes in size,
and can contain as their value the address of a single char *.
What is the question behind the question?
--
Remove del for email
.
- References:
- Re: char**
- From: Richard Heathfield
- Re: char**
- Prev by Date: Re: char**
- Next by Date: Re: char**
- Previous by thread: Re: char**
- Next by thread: Re: char**
- Index(es):
Relevant Pages
|