随笔分类 - C
摘要:#include#includeint compare_integers(void const *a, void const *b){ register int const *pa = a; register int const *pb = b; return *pa > ...
阅读全文
摘要:#include#includeint main(void){ char const *str[] = { "this is a pointer array test.", "welcome to here!", "hello,hello,hehe."...
阅读全文
摘要:#include#includechar *find_char(char const *source_str, char const *desc_str);int main(void){ char *source_str = "ABCDEF"; char *desc_str = "MMD...
阅读全文