hello every one I have written code
char sentence[100];
scanf("%s" ,sentence);
char * ptrs = sentence ;
printf("%d", strlen(ptrs));
suppose I enter
john is a boy
the strlen() function is giving me value 4 it stops counting after space what I should do
thanks
strlen()is doing, try printing the value that you are passing to it:printf("<<%s>>\n", ptrs);. This would have indicated what the trouble was immediately. The technique applies generically to any debugging problem. Either use a debugger to see what is being passed to the function, or use a print statement. – Jonathan Leffler Oct 10 '11 at 8:35