does the standard guarantee that the type of an expression
is implicitly void as it does for functions?
for example:
int i = 0xff;
i;
does the type implicitly have void
since it isn't used for anything.
is implicitly void as it does for functions?
for example:
int i = 0xff;
i;
does the type implicitly have void
since it isn't used for anything.
Comment