Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 How many bytes of memory will the following code reserve? #include<stdio.h> #include<stdlib.h> int main() { int p; p = (int )malloc(256 256); if(p == NULL) printf("Allocation failed"); return 0; } ?->(Show Answer!)
1. How many bytes of memory will the following code reserve? #include<stdio.h> #include<stdlib.h> int main() { int p; p = (int )malloc(256 256); if(p == NULL) printf("Allocation failed"); return 0; }
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.02 pm
Hence 256*256 = 65536 is passed to malloc() function which can allocate upto 65535. So the memory allocation will be failed in 16 bit platform (Turbo C in DOS). If you compile the same program in 32 bit platform like Linux (GCC Compiler) it may allocate the required memory.