int mystrlen(char a[]);
int main(void)
{
char a[999999];
gets(a);
int x=mystrlen(a);
printf("%d",x);
return 0;
}
int mystrlen(char a[])
{
int i,counter=0;
for(i=0;a[i]!='\0';i++)
{
counter++;
}
return counter;
}
GoBuyKar Provide Programming Solutions.
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.