Click here to Skip to main content
15,891,703 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow can find 2nd sat of month? Pin
Le@rner13-Sep-10 19:37
Le@rner13-Sep-10 19:37 
AnswerRe: How can find 2nd sat of month? Pin
Eugen Podsypalnikov13-Sep-10 20:11
Eugen Podsypalnikov13-Sep-10 20:11 
GeneralRe: How can find 2nd sat of month? Pin
CPallini13-Sep-10 22:59
mveCPallini13-Sep-10 22:59 
GeneralRe: How can find 2nd sat of month? Pin
Eugen Podsypalnikov13-Sep-10 23:23
Eugen Podsypalnikov13-Sep-10 23:23 
AnswerRe: How can find 2nd sat of month? PinPopular
CPallini13-Sep-10 22:58
mveCPallini13-Sep-10 22:58 
QuestionPointer Pointing to Itself? Pin
Skippums13-Sep-10 14:45
Skippums13-Sep-10 14:45 
AnswerRe: Pointer Pointing to Itself? Pin
Peter_in_278013-Sep-10 19:13
professionalPeter_in_278013-Sep-10 19:13 
AnswerRe: Pointer Pointing to Itself? Pin
Aescleal13-Sep-10 23:30
Aescleal13-Sep-10 23:30 
Your problem is that you say that &a.primes is of type (int *)[3]. (Actually I think you mean int (*)[3] - a pointer to an array of three ints, not an array to three pointers to int, but that's another story) It's not - it's type is int * const.

The name of an array is an alias for the address of the first element in that array. This means that:

T t[ N ];

t == &t[ 0 ];


for all T and N.

Likewise the address of an array is an alias for the first element in that array. Again this means that:

T t[ N ];

&t == &t[ 0 ];


for all T and N.

it also means that the type of &t is T * const, not (T *)[3]; as you asserted in your post.

So t, &t and &t[ 0 ] are synonyms for the same thing and *t, *&t and t[ 0 ] all refer to the same location in memory.

Cheers,

Ash
GeneralRe: Pointer Pointing to Itself? Pin
Skippums14-Sep-10 3:46
Skippums14-Sep-10 3:46 
GeneralRe: Pointer Pointing to Itself? Pin
Aescleal14-Sep-10 3:57
Aescleal14-Sep-10 3:57 
QuestionSending HTTP Post via TCP/IP Pin
Dustin Henry13-Sep-10 11:15
Dustin Henry13-Sep-10 11:15 
AnswerRe: Sending HTTP Post via TCP/IP Pin
Dustin Henry13-Sep-10 11:37
Dustin Henry13-Sep-10 11:37 
GeneralRe: Sending HTTP Post via TCP/IP Pin
Moak14-Sep-10 0:32
Moak14-Sep-10 0:32 
AnswerRe: Sending HTTP Post via TCP/IP Pin
markkuk13-Sep-10 11:52
markkuk13-Sep-10 11:52 
GeneralRe: Sending HTTP Post via TCP/IP Pin
Dustin Henry13-Sep-10 12:15
Dustin Henry13-Sep-10 12:15 
AnswerRe: Sending HTTP Post via TCP/IP Pin
Moak14-Sep-10 0:22
Moak14-Sep-10 0:22 
GeneralRe: Sending HTTP Post via TCP/IP Pin
Dustin Henry14-Sep-10 7:02
Dustin Henry14-Sep-10 7:02 
QuestionValidating console input Pin
Danzy8313-Sep-10 7:33
Danzy8313-Sep-10 7:33 
AnswerRe: Validating console input Pin
mk1488213-Sep-10 9:08
mk1488213-Sep-10 9:08 
AnswerRe: Validating console input Pin
Aescleal13-Sep-10 11:10
Aescleal13-Sep-10 11:10 
Questiondelete option in IE8 address bar Pin
inza113-Sep-10 7:04
inza113-Sep-10 7:04 
Answersomeone?any idea? Pin
inza122-Sep-10 4:50
inza122-Sep-10 4:50 
QuestionCalling APIs Problem In Drivers Pin
Coder-12345613-Sep-10 7:00
Coder-12345613-Sep-10 7:00 
AnswerRe: Calling APIs Problem In Drivers Pin
JudyL_MD13-Sep-10 11:07
JudyL_MD13-Sep-10 11:07 
QuestionSet the RibbonComboBox to Drop List type by code Pin
coolhem13-Sep-10 4:23
coolhem13-Sep-10 4:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.