size maximum allocated by calloc()
Answers were Sorted based on User's Feedback
Answer / vrushali
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.
| Is This Answer Correct ? | 13 Yes | 4 No |
Answer / 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 |
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
Can include files be nested?
how to build a exercise findig min number of e heap with list imlemented?
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
What library is sizeof in c?
What are c identifiers?
how to create c progarm without void main()?
What is the scope of static variables in c language?
Ow can I insert or delete a line (or record) in the middle of a file?
What is define directive?
Define C in your own Language.
why arithmetic operation can’t be performed on a void pointer?