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 |
what is the difference between definition and declaration? give me some examples.
Is it acceptable to declare/define a variable in a c header?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
what is the difference between procedure oriented and object oriented progaming language
What does the error 'Null Pointer Assignment' mean and what causes this error?
write a program to arrange the contents of a 1D array in ascending order
User define function contain thier own address or not.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
List out few of the applications that make use of Multilinked Structures?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..