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 |
hi any body pls give me company name interview conduct "c" language only
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
Can anyone tell what is stack overflow? what precaution we should take?
c program to subtract between two numbers without using '-' sign and subtract function.
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
When would you use a pointer to a function?
Differentiate between the expression “++a” and “a++”?
What is the use of getchar functions?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
what is the difference between NULL & NUL keywords in C?
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
Write a program to print distinct words in an input along with their count in input in decreasing order of their count