Data Structures Question:
Difference between calloc and malloc in data structures?
Answer:
malloc: allocate n bytes
calloc: allocate m times n bytes initialized to 0
calloc: allocate m times n bytes initialized to 0
Previous Question | Next Question |
What are the major data structures used in the following areas : RDBMS, Network data model & Hierarchical data model? | What is data structure? |