in malloc and calloc which one is fast and why?
Answer / bobby sigh
malloc is more faster than calloc because malloc required
only const sign integer or datatype
while calloc required type,block
so malloc is more faster than calloc
Is This Answer Correct ? | 13 Yes | 1 No |
Write a program to identify if a given binary tree is balanced or not.
What is c programming structure?
How does sizeof know array size?
what is the code to display color fonts in the output?
Is there a way to compare two structure variables?
what is available in C language but not in C++?
10 Answers CTS, TCS,
Write a program to find whether the given number is prime or not?
how to write a data 10 in address location 0x2000
What is indirection?
printf("%d",(printf("Hello")); What it returns?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4