Answer Posted / rohit
It is page size. almost 64k in linux OS.
After which we have to use realloc to get more memory.
In case, there is more memory available in dynamic memory
space, then realloc will give the pointer else NULL.
and also
it depends on system memory and compiler
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the header files used in c language?
Differentiate between a for loop and a while loop? What are it uses?
What are the properties of union in c?
What is the difference between formatted&unformatted i/o functions?
What is non linear data structure in c?
How will you write a code for accessing the length of an array without assigning it to another variable?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is double pointer?
Is null a keyword in c?
How can I trap or ignore keyboard interrupts like control-c?
What is wrong with this statement? Myname = 'robin';
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Explain what is the difference between a string and an array?
What is d'n in c?
What is #error and use of it?