hello head

摘要: int main() { char userNames[4][10] = {"joe", "betty", "betty", "xxx" }; char phoneNums[4][10] = {"110", "119", "999", "911"}; PhoneBook *s, *tmp; int i=0; for (; i us... 阅读全文
posted @ 2017-09-29 15:23 gardonkoo 阅读(109) 评论(0) 推荐(0) 编辑
摘要: #include /* strcpy */ #include /* malloc */ #include /* printf */ #include "uthash.h" #define MAX_USERNAME_LEN (30) #define MAX_PHONENUM_LEN (30) #define ERROR_PARAMETER ... 阅读全文
posted @ 2017-09-29 15:22 gardonkoo 阅读(201) 评论(0) 推荐(0) 编辑
摘要: /**************************************************************************************** ******功 能:遍历哈希表获取所有的用户名和电话号码 ******输入参数:userName表示要查询的用户名 ****** phoneNumberFound 用来存放查找到的电话号码(由调... 阅读全文
posted @ 2017-09-29 15:22 gardonkoo 阅读(100) 评论(0) 推荐(0) 编辑

hello foot