└── String length /String length: -------------------------------------------------------------------------------- 1 | import java.io.*; 2 | class hello{ 3 | public static void main(String[]args) 4 | { 5 | String str="mam"; 6 | System.out.println("The String is :"+str); 7 | int count=0; 8 | for(char i:str.toCharArray()) 9 | { 10 | count++; 11 | } 12 | System.out.println(count); 13 | } 14 | } 15 | --------------------------------------------------------------------------------