Advertisements
Advertisements
Question
Write a statement to show how finding the length of a character array chr[ ] differs from finding the length of String object str.
Short Answer
Solution
Statement to find the length of a character array chr[] is:
int 1 = chr.length;
Statement to find length of a String object str is:
int 1 = str.length();
shaalaa.com
Is there an error in this question or solution?