I came across an expression in C like
typeof((c) + 1) _tmp = c;
What exactly does this mean?
Thanks for the reply.
Just on
In my opinion, only for pointer, typeof((c) + 1) = typeof(c); so this maybe assure the passing parameter is pointer
typeof((c) + 1) = typeof(c);