Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

String Length - Without using strlen in C

#include<stdio.h>
 
int 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;
}