Computer Science, asked by vinubindu147, 10 months ago

program to find out the length of string without using strlen() function ​

Answers

Answered by swastikachoudhury7
1

class prg

{

void display()

{

String s="COMPUTER";

int length=s.length();

System.out.println(s);

}

}

Similar questions