Question:What will be printed on the standard output as a result of the following code snippet?void main() { char arr1[] = "REGALINT"; printf("%d,",strlen(arr1)); printf("%d",sizeof(arr1)); }
void main() { char arr1[] = "REGALINT"; printf("%d,",strlen(arr1)); printf("%d",sizeof(arr1)); }
A 1,1 B 8,4 C 8,8 D 8,9 E 9,8
+ AnswerD
+ Report