摘要:
The interviewer asks you, "Do you have any questions for me?" 面试官问你,“你有什么问题要问我吗?” You say …… "Yes!" 你回答说……“有!” This is the easiest interview question out there. Always say yes. 这是最简单的面试问题,总要说有的。... 阅读全文
摘要:
方法一:效率低 int func(unsigned int uiData , int length){ unsigned int uiValue = 0 ; int i = 0 ; for ( i = 0 ; i > 1 ; } return uiValue ;}方法二:分治int func (unsigned int uiDa... 阅读全文
摘要:
//指针数组和数组指针分析#include int main(int argc, char *argv[]){ int a[8][8] = {1,2,3,4}; int (*ptr1)[8] = a ; int (*ptr2)[8][8] = &a; int *ptr3 = &a[0][0]; printf(" &a[0][0] ... 阅读全文