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 mean by data types in c?
Are enumerations really portable?
What is the explanation for the dangling pointer in c?
What is nested structure?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is preprocessor with example?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What is the use of void pointer and null pointer in c language?
How can you find the day of the week given the date?
Can a pointer be null?
How are Structure passing and returning implemented by the complier?
What are data types in c language?
Why does notstrcat(string, "!");Work?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm