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
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Explain what are reserved words?
What is the deal on sprintf_s return value?
If you know then define #pragma?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Write a program of advanced Fibonacci series.
What do you mean by a local block?
What is a node in c?
What is the difference between exit() and _exit() function in c?
How will you divide two numbers in a MACRO?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How reliable are floating-point comparisons?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
How many main () function we can have in a project?
Explain the use of keyword 'register' with respect to variables.