我的 C 课还有另一个练习。代码不会崩溃,但不能按预期工作。显然我犯了一个我找不到的错误。分配如下:用户输入两个字符 c1 和 c2 以及一个整数 n,您必须创建一个函数,该函数动态创建并返回一个包含 n 个字符的字符串,如下所示:c1c2c1c2c1c2 等。例如:c1=a 和 c2= s and n=4 字符串为:asas
但是我创建的数组不包含 c1 和 c2,而是 ASCII 表中的一些随机字符。加上这里:
printf("\nThe string is: %s\n",s);
屏幕上的输出是这样的: Ohe string is: I (Insted of The string is: s-whatever s is-) 下面是 .exe 文件中的照片链接:
#include <stdio.h>
#include <stdlib.h>
char* alternate(char c1,char c2,int n)
{
int i;
char *s;
s=(char*)malloc((n+1)*sizeof(char));
if(s==NULL)
{
puts("Could not allocate memory!");
exit(1);
}
for(i=0;i<n;i++);
{
if(i%2==0)
s[i]=c1;
else
s[i]=c2;
}
s[i]='\0';
return s;
}
main()
{
char c1,c2,*s;
int n;
puts("Give two characters: ");
scanf("%c %c",&c1,&c2);
fflush(stdin);
puts("Give an integer: ");
scanf("%d",&n);
s=alternate(c1,c2,n);
printf("\nThe string is: %s\n",s);
free(s);
system("pause");
}
先感谢您!