最赞回答 / 慕粉163032922
typedef struct _COORD { // coord. SHORT X; // horizontal coordinate SHORT Y; // vertical coordinate } COORD; WINDOWS API中定义的一个结构
2017-01-15
已采纳回答 / 慕少0808759
int getMax(int a, int b){ return a > b ? a : b;}int getMax(int count,int arr[])//这个地方你 缺少了 arr类型 你的代码是int getMax(int count, arr[]){ int maxNum = arr[0]; for (int i = 1; i < count; i++) { if (maxNum<arr[i]) { maxNum = arr[i]; } } return ma...
2016-12-14
最赞回答 / 湮霭凝翎
if(NULL == p)和f(p == NULL)两者并没什么区别,都是判断指针p是否为空。但是当考虑到出错检查时,if(NULL == p)写法更好,因为如果误写为if(NULL = p)的时候,编译器就会提示出错(因为常量不能被赋值);而if(p == NULL)如果误写为if(p = NULL),则编译器不会报错。
2016-12-11
最赞回答 / fengjunwei
const int *p 就是说int *p这个是常量,*p不可以改变;int const *p 就是说*p这个是常量,p不可以改变;int *const p就是说p是常量,p本身是常量指针;依次类推。
2016-12-02