Re: char**
- From: Richard Heathfield <rjh@xxxxxxxxxxxxxxx>
- Date: Sat, 30 Aug 2008 10:55:21 +0000
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 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?
--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
.
- Follow-Ups:
- Re: char**
- From: Barry Schwarz
- Re: char**
- From: MN
- Re: char**
- Prev by Date: Re: char**
- Next by Date: Re: Problems With Global Variables (memory allocations)
- Previous by thread: Re: char**
- Next by thread: Re: char**
- Index(es):
Relevant Pages
|