Name: Anonymous 2017-04-14 17:09
is a byte with all zeros equivalent to the integer value (signed or unsigned) zero, in terms of portability?
Such that, is
Such that, is
memset(&i, 0, sizeof(int));
equivalent to i = 0;
?