C MEMSET

#include <string.h> // memset(void *, char, size_t)

int main(void) {
  char buff[1024];
  memset(buff, '\0', 1024);
  /*
  Initialize the first 1024 bytes of buff with '\0'
  */
  return 0;
}
LukeProducts