WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
Answer Posted / seema choudhary
Depending upon a data type
integer datatype it limits is 65536 i.e range of the
integer data type
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
Explain how can I pad a string to a known length?
code for replace tabs with equivalent number of blanks
What are the different properties of variable number of arguments?
What is nested structure with example?
Why can’t we compare structures?
Explain the difference between #include "..." And #include <...> In c?
Explain void pointer?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Explain how can I remove the trailing spaces from a string?
Explain what are the different data types in c?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the use of function in c?
Can we increase size of array in c?
Can we use any name in place of argv and argc as command line arguments?