IS it possible to define a zero sized array in c.if it is
possible how can the elements of that array can be
accessed.array index starts from zero,if it is possible to
define zero sized array how can be its first element can be
accesseed.
Answer Posted / k satish kumar reddy
it is not possible to define a zero size array in C. Because
we must declare the size of the array at the time of
declaration. If we declare zero size array like array[0] the
compiler shows an error.
| Is This Answer Correct ? | 15 Yes | 6 No |
Post New Answer View All Answers
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Explain the concept and use of type void.
Explain how do you generate random numbers in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is a keyword?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Are pointers integer?
Who is the main contributor in designing the c language after dennis ritchie?
What is the explanation for modular programming?
Why is python slower than c?
What are qualifiers?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
What is a good data structure to use for storing lines of text?
Is there a built-in function in C that can be used for sorting data?
What is #include stdio h and #include conio h?