i declare a string, now i want to find its length like:
String x=”Fauziya”;
int i=strlen(x);
bt its not working,plz help me out..
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Use:
x.length()
rather than strlen.