3
CHAR_BIT কী?
Http://graphics.stanford.edu/~seender/bithacks.html থেকে শাখা ছাড়াই পূর্ণসংখ্যার পরম মান (অ্যাবস) গণনার জন্য কোড উদ্ধৃত করা : int v; // we want to find the absolute value of v unsigned int r; // the result goes here int const mask = v >> sizeof(int) * CHAR_BIT - 1; r = (v + mask) …