1.虽然知道,但是很可能把strlen(str)误用为sizeof(str)
2.编写一个函数求整数数组中的第二大的值
int second_max(int a[], int num) { int max = a[0]; int second = max - 1; int i; for(i = 0; i < 10; i++) { if(a[i] > max) { second = max; max = a[i]; } else if(a[i] > second) { second = a[i]; } } return(second); }
|
3.函数模板和类模板的区别:使用模板函数生成实例的时候,可以隐形指定类型;而类模板则必须显性指定类型。
阅读(712) | 评论(0) | 转发(0) |