gpt4 book ai didi

c - C 中的字符串相乘

转载 作者:行者123 更新时间:2023-11-30 18:41:08 26 4
gpt4 key购买 nike

我编写了一个简单的程序来将字符串乘以定义的次数。但是,它并没有真正起作用,也不知道为什么......

太简单了,我不知道问题出在哪里......

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char *product(char *str, int k);

int main()
{
char strg[1000];
char *prod;
int mult;

scanf("%s", strg);
scanf("%d", mult);

prod = product(strg, mult);

printf("%s\n", prod);

return EXIT_SUCCESS;
}

char *product(char *str, int k)
{
int i, j;
int len = strlen(str);
char *res = (char *) malloc(sizeof(char) * (len * k + 1));

for (i = 0, j = 0; i < (len * k); i++, j++)
{
if (j == len) j = 0;

res[i] = str[j];
}

res[++i] = '\0';

return res;
}

谁能帮我看看问题出在哪里? :D

最佳答案

在循环结束时,i 已经是终止符位置的索引。

就这么做

res[i] = 0;

关于c - C 中的字符串相乘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23041727/

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