Answer Posted / shubham bajpai
CALLOC FUNCTION DYNAMICALLY ALLOCATES MEMORY IN FORM OF BLOCKS(CONSECUTIVE) & INITIALIZES ALL BLOCKS TO 0.
CALLOC FUNCTION REQUIRES 2 ARGUMENTS IN ITS CALLING.
EXAMPLE:
PTR=(INT *)CALLOC(SIZEOF(INT),N);
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Should I learn c before c++?
Why are algorithms important in c program?
What does typedef struct mean?
What is meant by errors and debugging?
What is derived datatype in c?
What is a nested loop?
If fflush wont work, what can I use to flush input?
Is c call by value?
Is c still used?
What are the rules for the identifier?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is c programming structure?
What is data structure in c language?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Explain main function in c?