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 / crazzybouy
#include<stdio.h>
int main(){
int a[0];
printf("%d",sizeof(a));
}
~
| Is This Answer Correct ? | 10 Yes | 11 No |
Post New Answer View All Answers
Explain spaghetti programming?
Explain output of printf("Hello World"-'A'+'B'); ?
Explain the array representation of a binary tree in C.
Can main () be called recursively?
What is line in c preprocessor?
What does nil mean in c?
How can a program be made to print the line number where an error occurs?
The file stdio.h, what does it contain?
What are the complete rules for header file searching?
What is function pointer c?
Can include files be nested? How many levels deep can include files be nested?
How to write a multi-statement macro?
Where register variables are stored in c?
What is the difference between the local variable and global variable in c?
What is the difference between text and binary modes?