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 / avtar singh
no it is not possible to define array with size 0 as
compiler shows a compilation error of array must contain
atleast one element;
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is the correct declaration of main?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is the difference between local variable and global variable in c?
Explain void pointer?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is file in c preprocessor?
What is the purpose of 'register' keyword?
What is the acronym for ansi?
What does *p++ do? What does it point to?
Write a code on reverse string and its complexity.
What is the use of putchar function?
Why is c not oop?
Explain how does flowchart help in writing a program?
write a c program for swapping two strings using pointer