1.

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[];
D. D.
Answer» B. char name[6] = {"I","N","D","I","A"}


Discussion

No Comment Found