What is the output
    #include stdio.h
#include ctype.h
int main ()
{
int i;
char str[] = "BK?!!...";
i = 0;
while ( isalnum(str[i] ))
i++;
printf (" %d\n",i);
return 0;
}

Posted on by