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
What is sizeof array in c?
When should you use a type cast?
What is time complexity c?
What are two dimensional arrays alternatively called as?
write a program in c language to print your bio-data on the screen by using functions.
What is c token?
How are Structure passing and returning implemented by the complier?
Define recursion in c.
Write a program to identify if a given binary tree is balanced or not.
Do you know what are the properties of union in c?
What are runtime error?
How many types of operators are there in c?
For what purpose null pointer used?
What does emoji p mean?
What is null character in c?