题目:在字符串中找出第一个只出现一次的字符。如输入"abaccdeff",这输出'b'
// 第一个只出现一次的字符 #include <stdio.h> char first_not_repeat_char(char *s) { int count[256]={0}; char *pkey; if( s==NULL ) { printf("The string should not be NULL "); return '