混乱C开始

时间:2016-06-04 16:16:58

标签: c arrays char fgets

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


int main()
{
 char a[250];
 char c1[1],c2[1];
int n,i;


printf("Give text: ");
gets(a);

printf("Give c1: ");
gets(c1);
  printf("Give c2: ");
 gets(c2);

n=strlen(a);

for(i=0;i<n;i++)
{
    if(a[i]==c1)
 {
      a[i]=c2;
   }
  if(a[i]==c2)
 {
    a[i]=c1;
   }
   }
     printf("%s",a);
return 0;
}

在文字中,我需要将c1切换为c2并反向, 但是当我在给出一个c1之后启动程序时,c2没有任何反应。 我哪里错了?

2 个答案:

答案 0 :(得分:2)

首先,don't use gets(), it's inherently dangerous,改为使用fgets()

最重要的是,当您使用gets(c1)c1作为单元素数组时,您已经超出了调用undefined behavior的已分配内存。

也就是说,你有c1c2作为单元素数组,这些都没有错,但都不是必需的。将它们定义为简单的char变量

char c1;
char c2;

并像

一样使用它们
 scanf(" %c", &c1);  // mind the space and don't forget to to check the return 
 scanf(" %c", &c2);  // value of scanf() to ensure proper scanning.

之后,a[i] == c2的检查应该是else构造,否则,您将覆盖之前的操作。像

这样的东西
for(i=0;i<n;i++)
{
    if(a[i]==c1)
   {
      a[i]=c2;
   }
  else if(a[i]==c2)
   {
    a[i]=c1;
   }
}

答案 1 :(得分:0)

    不应使用
  • gets(),因为它具有不可避免的缓冲区溢出风险,在C99中已弃用并从C11中删除。
  • c1c2的缓冲区大小不足。
  • 您应该检查读数是否成功。
  • 在比较检索读取的字符之前,您应取消引用c1c2
  • 您应该使用else if,否则将会再次修改修改过的字符。

试试这个:

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

/* this is a simple implementation and the buffer for \n is wasted */
char* safer_gets(char* buf, size_t size){
  char* lf;
  if (fgets(buf, size, stdin) == NULL) return NULL;
  if ((lf = strchr(buf, '\n')) != NULL) *lf = '\0';
  return buf;
}

int main()
{
  char a[250];
  char c1[4],c2[4]; /* need at least 3 elements due to the inefficient implementation of safer_gets */
  int n,i;


  printf("Give text: ");
  if(safer_gets(a, sizeof(a)) == NULL)
  {
    fputs("read a error\n", stderr);
    return 1;
  }

  printf("Give c1: ");
  if(safer_gets(c1, sizeof(c1)) == NULL)
  {
    fputs("read c1 error\n", stderr);
    return 1;
  }
  printf("Give c2: ");
  if(safer_gets(c2, sizeof(c2)) == NULL)
  {
    fputs("read c2 error\n", stderr);
    return 1;
  }

  n=strlen(a);

  for(i=0;i<n;i++)
  {
    if(a[i]==*c1)
    {
      a[i]=*c2;
    }
    else if(a[i]==*c2)
    {
      a[i]=*c1;
    }
  }
  printf("%s",a);
  return 0;
}