Java program to find the length of a string
Answers
Answered by
1
class Java
{
public static void main (String args [])
{
String s="Computer";
int a=s.length();
System.out.println(a);
}
}
follow me if you liked my answer
{
public static void main (String args [])
{
String s="Computer";
int a=s.length();
System.out.println(a);
}
}
follow me if you liked my answer
Similar questions