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));
}
 

A 1,1 

B 8,4 

C 8,8 

D 8,9 

E 9,8 

+ Answer
+ Report
Total Preview: 785

Copyright © 2024. Powered by Intellect Software Ltd