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 |
When can you use a pointer with a function?
How can you invoke another program from within a C program?
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
What is a union?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
write a program to compare 2 numbers without using logical operators?
What is structure in c language?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
How can I call a function with an argument list built up at run time?
can we access one file to one directory?