WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
Answer Posted / mohit
if array is of integer type then max size should be
65536.(ie total range for integers).however it shows array
size too large.for character data type the range 65536 is valid.
| Is This Answer Correct ? | 40 Yes | 12 No |
Post New Answer View All Answers
What is the explanation for the dangling pointer in c?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is file in c preprocessor?
How do you search data in a data file using random access method?
define string ?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Why c language?
Tell us bitwise shift operators?
How to write a multi-statement macro?
What are the types of data types and explain?
Why calloc is better than malloc?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What is meant by realloc()?