What is the difference between "calloc" and "malloc"?

Answer Posted / srikanth

MALLOC ASSIGNS O VALUE , WHERE AS CALLOC ASSIGNS GARBAGE
VALUE.

Is This Answer Correct ?    3 Yes 27 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we distribute function templates and class templates in object libraries?

597


Why cstdlib is used in c++?

589


Explain the uses oof nested class?

631


Is c++ faster than c?

598


Arrange Doubly linked list in the ascending order of its integral value and replace integer 5 with 7?

3708






What is c++ redistributable?

630


Program to check whether a word is a sub-string or not of a string typed

1604


A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.

1750


What are keywords in c++?

604


Can constructor be private in c++?

612


What is a float in c++?

547


Difference between delete and free.

621


Write a c program for binary addition of two 8 bit numbers.

3670


What do you mean by inheritance in c++? Explain its types.

617


What is object in c++ example?

630