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 'lex' does?
Write a program to print numbers from 1 to 100 without using loop in c?
how to find binary of number?
Explain what does a function declared as pascal do differently?
How many types of functions are there in c?
What are structures and unions? State differencves between them.
Where static variables are stored in memory in c?
Is it possible to initialize a variable at the time it was declared?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What is pass by reference in functions?
What are the main characteristics of c language describe the structure of ac program?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Write a program to check whether a number is prime or not using c?
How arrays can be passed to a user defined function
What do header files do?