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 |
Which is better pointer or array?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
Can we increase size of array in c?
What does volatile do?
How can I insert or delete a line (or record) in the middle of a file?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
what is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
Can you think of a logic behind the game minesweeper.
What is preprocessor with example?
what are the compilation steps? ( i want inside the compiler )
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
What is function definition in c?