Saturday, 18 February 2012

program to find string length without strlen

#include<stdio.h>
 
main()
{
char array[100], *pointer;
int length = 0;
 
printf("Enter a string\n");
gets(array);
 
pointer = array;
 
while(*(pointer+length))
length++;
 
printf("Length of entered string = %d\n",length);
 
return 0;
}

No comments:

Post a Comment