int FirstNotRepeatingChar(char* str ) { int i = 0; while(*(str+i) != '\0') { int count = 0; &nbs...