What is the meaning of this java statement:
if(ch ==' ')
{
word=word+ch;
}// ch means a character of a string and word is a part of string
Answers
Answered by
1
Answer:
Explanation:
If ch is a space then word =word +space
Similar questions