What is the difference between calloc() and realloc()?
Answer / nashiinformaticssolutions
calloc() allocates memory and initializes it to zero.
realloc() resizes previously allocated memory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Program to find larger of the two numbers without using if-else,while,for,switch
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
Why is c so powerful?
write a own function for strstr
Why we write conio h in c?
Why is it usually a bad idea to use gets()? Suggest a workaround.
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
how to find the size of the data type like int,float without using the sizeof operator?
Why n++ execute faster than n+1 ?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..