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 |
Explain setjmp()?
What is a lookup table in c?
What is a Genralised LInked List?? Please give a detailed explation of it..
What does c mean before a date?
what is difference between declaring the pointer as int and char in c language?
what is the structure?
If null and 0 are equivalent as null pointer constants, which should I use?
Calculate 1*2*3*____*n using recursive function??
What is the difference between a string and an array?
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789