recategorized by
1,709 views

1 Answer

3 votes
3 votes

C is the ans 

Arrays in C language can have  one  only one subscipt with reference to memory representation.

as all types of array whether one dimensional two dimensional  or 3 dimensional are stored in single continuous location linearly

(A) n-subscripts
(B) two-subscripts
(C) only one subscript
(D) three subscripts only

edited by
Answer:

Related questions

1 votes
1 votes
1 answer
1
1 votes
1 votes
2 answers
2
go_editor asked Jul 18, 2016
1,255 views
Trace the error:void main() { int *b, &a; *b=20; printf(“%d, %d”, a, *b) }No errorLogical errorSyntax errorSemantic error
3 votes
3 votes
2 answers
3
go_editor asked Jul 18, 2016
3,237 views
Match the following $:$$\begin{array}{} \text{a.} & \text{calloc()} & \text{i.} & \text{Frees previously allocated space} \\ \text{b.} & \text{free()} & \text{ii.} & \te...