In the following function
The statement s[i] + s[i] == c; results in either zero or one (Boolean result).
My question: will the above expression be converted to boolean expression? It is considering the value of s[i]
void func(char s[], int c)
{
int i, j;
for (i = j = 0; s[i] != '\0'; i++)
if (s[i] != c)
s[j++] = s[i] + s[i] == c;
s[j] = '\0';
}