how a character array is declared in c?
Answers
Answered by
1
Answer:
An array is defined as following :-
Explanation:
If array stores character elements then type of array is 'char'. If array stores integer elements then type of array is 'int'. Besides these native types, if type of elements in array is structure objects then type of array becomes the structure
Similar questions