Hi I am getting error in the following line....
int m=0;
for(l=0; txt[l] != '\0'; l++)
{
if((txt[l] != ' ') && (txt[l] != '\r') (txt[l] != '\n'))
{
str[m]=txt[l];
m++;
}
}
str[l]='\0';
txt is of type const char *txt
char str[1000];
error message "called object is not a function "
Start Free Trial