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 a pointer in c plus plus?
What are header files in c?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Explain which function in c can be used to append a string to another string?
What is dynamic variable in c?
What is "Duff's Device"?
What the advantages of using Unions?
Why c is called procedure oriented language?
can we have joblib in a proc ?
What is meant by preprocessor in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Is c is a procedural language?
What is a void pointer in c?
How do you use a 'Local Block'?
Why c is called a mid level programming language?