int *ip;
与++*ip相等价的是*ip++还是(*ip)++ ?
是后者!
because unary operators like * and ++ associate right to left.
++i+ ++i 和 ++i++ +i格式哪个正确?
前者,后者编译时会出错!
与++*ip相等价的是*ip++还是(*ip)++ ?
是后者!
because unary operators like * and ++ associate right to left.
++i+ ++i 和 ++i++ +i格式哪个正确?
前者,后者编译时会出错!
回复Comments
{commenttime}{commentauthor}
{CommentUrl}
{commentcontent}