Answers for "check repeating chars in a string in c"

0

check repeating chars in a string in c

for(i=0;i<=lenString;i++)
	{
		if(string[i] == string[i+1])
		{
			if((password[i] != '') && (password[i+1] != ''))
			{
				countRepeated++;
			}
		}
Posted by: Guest on January-06-2022

Code answers related to "check repeating chars in a string in c"

Browse Popular Code Answers by Language