#include <stdio.h>
#include <stdlib.h>
main()
{
char a[30],b[30];
int i,j,n;
printf("enter the limit: ");
scanf("%d",&n);
printf("enter the string: ");
for(i=0;i<n;i++)
{
scanf("%s",a[i]);
}
j=strlen(a[0]);
printf("%d",j);
}
here for example it will take 4 words where a[0]=word1,a[1]=word2,a[2]=word3,a[3]=word4 where i have particularly find string length of a[0] in 15 th line i have done that j=strlen(a[0]) is it possible