::
Re: [DNG] Studying C as told. (For …
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
Este mensaje es parte del siguiente hilo:
El árbol completo de hilos, ordenados por fecha
Peter Olson, mensaje del
2016-06-24 01:34
Edward Bartolo, mensaje del
2016-06-24 07:19
Autor:
Edward Bartolo
Fecha:
2016-06-24 05:19
UTC
A:
dng
Asunto:
Re: [DNG] Studying C as told. (For help)
Bitwise Operators:
Pg 63:
/* getbits: get n bits from position p */
unigned int getbits(unsigned int x, int p, int n)
{
return (x >> (p + 1 - n)) & ~(~0 << n);
}
Why is the book using p + 1 - n?! According to my logic it should use p - 1.
Edward