Which is better between malloc and calloc?
No Answer is Posted For this Question
Be the First to Post Answer
if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')
What is the purpose of realloc()?
What is the use of keyword VOLATILE in C?
What are the main characteristics of c language describe the structure of ac program?
what is array?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
write a program to find the sum of the array elements in c language?
24 Answers ICT, Infosys, Wipro,
What is a pointer and how it is initialized?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
What's the difference between calloc() and malloc()?