c-programming-memory-allocation Related Question Answers

1. What will be the output of the program? #include<stdio.h> #include<stdlib.h> int main() { int p; p = (int )malloc(20); / Assume p has address of 1314 / free(p); printf("%u", p); return 0; }





Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution