1
edit
Changes
→To Do 10
* I tried the first function at http://yun811.blogspot.ca/ Yun Yang's oop344
* My drafts on char* bits(unsigned int val) : http://itactics.wordpress.com/2012/11/20/code-how-to-print-binary/ (Diaoqiang He)
* I did the void prnBits function in one line:
* void prnBits(int val){
* for(unsigned int m = 1 << (sizeof(val)*8 -1); m;printf("%d", !!(m & val)),m=m>>1);
* }
* Alina Shtramwasser - email: [mailto:ashtramwasser1@myseneca.ca ashtramwasser1]
=== Resources 10===