#include #include int main(void) { char str[] = "0123456789"; memset(str + 5, '*', 5); printf("%s\n", str); return 0; }