A
Q. Find the output of the following program.
Code:
main(){
char ch[] = “Interviewbit Scaler”;
int l = strlen(ch);
cout << l << endl;
}
char ch[] = “Interviewbit Scaler”;
int l = strlen(ch);
cout << l << endl;
}
- Correct Answer - Option(B)
- Views: 26
- Filed under category C++
- Hashtags:
Discusssion
Login to discuss.