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 / slowdeath
no, it is not possible to define a array with 0 element,
the compiler will show an error message that array must
contain atleast one element
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is difference between array and pointer in c?
Tell me when is a void pointer used?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Can variables be declared anywhere in c?
What is a program?
What is a void pointer? When is a void pointer used?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Explain how many levels deep can include files be nested?
What does %c do in c?
What do you mean by recursion in c?
What does calloc stand for?
What is New modifiers?
What is the -> in c?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?