0
#include <stdio.h>


void main()
{
    char plaintext[50];
    char key[20];
    int plain=0,max1=0,max2=0; // max2 amount of coloumn n max1 for row on chip
    char chip[30][30];
    int i,j,k=0,c=0;

    printf("Enter key :");
    scanf("%s",&key);

    for(i=0;key[i]!='\0';i++)
    {
        max2++; 
    }

    printf("Enter plaintext :");
    scanf("%s",&plaintext);

    for( i = 0; plaintext[i] != '\0'; i++ ) 
    {
        plain++; 
    }
    if (plain%max2==0)
    max1=plain/max2;
    else
    max1=plain/max2+1;
    while(plaintext[k]!='\0')
    {

        for (i=0;i<max1;i++)
        {
            for (j=0;j<max2;j++)
            {
            chip[i][j]=plaintext[k];
            k++;
            }
        }
    }
    printf("%s",chip[0][0]);
}

第一次我试图将普通(1D 数组)上的字符串移动到 2D 上具有动态数组的芯片(2d 数组)中,但是当我尝试运行此代码时,它只显示停止工作.. 我的 2D 数组有什么问题吗?

4

1 回答 1

1

我在 Linux 上编译它(在省略 void 之后,因为在 Linux main 中必须返回一个值),我得到了“分段错误”。我猜是因为printf("%s",chip[0][0]);,应该是printf("%s",chip[0]);

我的意思是芯片[0][0] 返回芯片[0] 中的特定字符,并且您想打印芯片数组中的第一个字符串,对吗?

于 2013-03-18T09:55:00.493 回答