Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. C

    C Program need explanation

    malloc() is a memory allocation function that accepts the number of bytes to allocate as the parameter. memset() is a function to store data at a specific address; 'buf' being the destination, '0' being the data to store, and maxLen+1 being the size of the data to store. The purpose of this is...
Top