memset

Sets all of the bytes in a block of memory to a specified value memset(my_buffer, 0x00, sizeof(my_buffer)); //Set entire my_buffer to 0x00  

Read More