Bit Manipulation
文章平均质量分 60
greatbear_us
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Little endian vs Big endian
Concept: In big endian, you store the most significant byte in the smallest address. In little endian, you store the least significant byte in the smallest address. #include #include int main()原创 2013-05-11 10:36:39 · 387 阅读 · 0 评论 -
Decimal to Binary
#include #include void printBinary(int); int main() { decimal2Binary(15); printf("\n"); printBinary(15); return 0; } void printBinary(int a){ int i; for(i = sizeof(a)*8 - 1原创 2013-05-11 09:38:32 · 502 阅读 · 0 评论
分享