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 do you determine whether to use a stream function or a low-level function?
When should a type cast not be used?
What do you mean by recursion in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
How is actual parameter different from the formal parameter?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Explain argument and its types.
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
I need a sort of an approximate strcmp routine?
What is return in c programming?
What is the difference between āgā and āgā in C?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
write a c program to find the sum of five entered numbers using an array named number
What does nil mean in c?
What is the use of a static variable in c?