1.

What is the output of following program?

 # include  int main() { char str1[] = "GeeksQuiz"; char str2[] = {'G', 'e', 'e', 'k', 's', 'Q', 'u', 'i', 'z'}; int n1 = sizeof(str1)/sizeof(str1[0]); int n2 = sizeof(str2)/sizeof(str2[0]); printf("n1 = %d, n2 = %d", n1, n2); return 0; } 

A. n1 = 10, n2 = 9
B. n1 = 10, n2 = 10
C. n1 = 9, n2 = 9
D. n1 = 9, n2 = 10
Answer» B. n1 = 10, n2 = 10


Discussion

No Comment Found

Related MCQs