Top

Discussion

In C Programming, If we need to store word "INDIA" then syntax is as below -

  • A.char name[6] = {'I','N','D','I','A','\0'}
  • B.char name[6] = {"I","N","D","I","A"}
  • C.
    char name[];
    name = "INDIA"
  • D.char name[6] = {'I','N','D','I','A'}

Answer: A

No answer description available for this question.

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

Post your comment