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
What is bash c?
how to find binary of number?
Is fortran still used in 2018?
What is an example of structure?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is wild pointer in c with example?
c language interview questions & answer
Why is c not oop?
Why can arithmetic operations not be performed on void pointers?
What is the purpose of & in scanf?
Do character constants represent numerical values?
What is the function of volatile in c language?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is the difference between call by value and call by reference in c?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?