gpt4 book ai didi

c++ - 关于函数 strcpy_s

转载 作者:行者123 更新时间:2023-11-30 05:15:44 28 4
gpt4 key购买 nike

我想输出三个国家首字母中最小的字母,这是代码:

#include<iostream>
#include<string>
using namespace std;
int main()
{
void smallest_string(char str[][30], int);
int i;
char country_name[3][30];
for (i = 0; i < 3; i++)
cin >> country_name[i];
smallest_string(country_name, 3);
system("pause");
}
void smallest_string(char str[][30], int n)
{
int i;
char string[30];
***strcpy_s(string, str[0]);***
for (i = 0; i < n; i++)
if (strcmp(str[i], string) < 0)
strcpy_s(string, str[i]);
cout << endl << "the smallest string is:" << string << endl;
}

这段代码strcpy_s(string, str[0]);,好像可以删掉。为什么?

最佳答案

如果您希望循环从 i = 1 开始,strcpy_s(string, str[0]); 行是必不可少的。

但是,由于您是从 i = 0 开始的,因此如果您还定义了以下开始条件,则不是严格要求:string[0] == CHAR_MAX字符串[1] == 0。但如果情况并非如此,那么您将遇到未定义的行为。

关于c++ - 关于函数 strcpy_s,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42947357/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com