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


Please Help Members By Posting Answers For Below Questions

count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

869


Are c and c++ the same?

788


How is a macro different from a function?

850


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

979


Explain what is the difference between a free-standing and a hosted environment?

880


What header files do I need in order to define the standard library functions I use?

733


What is the difference between #include and #include 'file' ?

796


What is typeof in c?

754


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.

2127


What is a pointer value and address in c?

811


FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above

857


Can you please compare array with pointer?

816


What are the standard predefined macros?

816


What is void c?

770


how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software

3033