Question:What will be printed on the standard output as a result of the following code snippet?void main() { char arr[] = {'R','A','M'}; printf("%d",strlen(arr)); }
void main() { char arr[] = {'R','A','M'}; printf("%d",strlen(arr)); }
A 0 B 1 C 3 D 4 E Cannot be determined
+ AnswerE
+ Report