Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

c memset

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

int main(void) {
  char buff[1024];
  memset(buff, '', 1024);
  /*
  Initialize the first 1024 bytes of buff with ''
  */
  return 0;
}
 
PREVIOUS NEXT
Tagged: #memset
ADD COMMENT
Topic
Name
9+6 =