#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; }