Top

Discussion

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: A

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment