摘要: 1、void func(int a,char *b) 当函数不需要返回值值时,必须使用void限定,这就是我们所说的第一种情况。 2、int func(void) 当函数不允许接受参数时,必须使用void限定,这就是我们所说的第二种情况。 3、void 指针的使用规则 void 指针可以指向任意类型 阅读全文
posted @ 2023-06-15 15:29 森是林上木 阅读(803) 评论(0) 推荐(0) 编辑
摘要: 参考:c中函数前面加static的意义 -123我爱编程-ChinaUnix博客 static void qoi_write_32(unsigned char *bytes, int *p, unsigned int v) { bytes[(*p)++] = (0xff000000 & v) >> 阅读全文
posted @ 2023-06-15 15:08 森是林上木 阅读(107) 评论(0) 推荐(0) 编辑