-1

学C语言的时候,听说过C语言中的strset函数。

但是,我在最新版本的 C 中找不到它。

是不是被删了?如果删除了,为什么要删除?

4

1 回答 1

0

strset 仍然存在。VS 2017 - _strset_s

#include <stdio.h>
#include <string.h>
int main() {
    char text[] = "Test Code";
    _strset_s(text, sizeof(text), '*');
    printf("%s\n", text);
}

结果 : *********

“文本代码”共 9 个字符。所以输出九(' ')

_strset_s(char *_Destination, size_t_DestinationSize, int _Value)

于 2018-06-02T13:53:36.360 回答