Q. Find the output of the following program.
Code:
main(){
char ch[] = “Interviewbit Scaler”;
int l = strlen(ch);
cout << l << endl;
}
β
Correct Answer: (B)
19
main(){
char ch[] = “Interviewbit Scaler”;
int l = strlen(ch);
cout << l << endl;
}
You must be Logged in to update hint/solution