Syntax explanation
Posted
by Knowing me knowing you
on Stack Overflow
See other posts from Stack Overflow
or by Knowing me knowing you
Published on 2010-04-29T19:13:04Z
Indexed on
2010/04/29
19:17 UTC
Read the original article
Hit count: 232
c++
In code:
struct tagPaint
{
}Paint,//<<<--------------what's this (Paint)?
*pPaint;//<<<-------------and this(*pPaint)?
I mean do I declare variable with name Paint of type tagPaint and pointer called pPaint to tagPaint?
Thanks.
© Stack Overflow or respective owner