length of a char array in c
char chararray[10];
size_t len = strlen(chararray);
length of a char array in c
char chararray[10];
size_t len = strlen(chararray);
chararray length
import java.util.Scanner;
public class FindLengthOfStringWithoutUsingLength {
public static void main(String[] args) {
int length=0;
Scanner sc = new Scanner(System.in);
System.out.println("Enter a String");
String s = sc.next();
for (char c1 : s.toCharArray())
length++;
System.out.println("Length of String is : "+length);
}
}
This code is contributed by Shubham Nigam (Prepinsta Placement Cell Student)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us