В C, я не уверен, как вывод указателя обновляется? - PullRequest
0 голосов
/ 05 апреля 2019

Я пытаюсь найти код для практики для моего предстоящего теста. Я обычно печатаю шаги, чтобы узнать, как обновляются значения, но для моего текущего кода я не могу этого сделать. Кто-нибудь может помочь мне понять трассировку ??

#include <stdio.h>
#include <stdlib.h>
void print(int *info, int size)
{
    int i,*data,*dataptr;
    for (i=0; i<size; i++)
        printf("info[%d]=%d\n",i,info[i]);
    printf("\n");
    return;
}
int main()
{
    int i,*data,*dataptr;
    data = (int *)malloc(4*sizeof(int));

    for (i=0; i<4; i++)
        data[i]=3*i;
            print(data,4); //output: 0 3 6 9 <-I understand this output

    *data = 5; //I get  
    dataptr = data;//
    dataptr++; //
    *dataptr = 1;// 
    print(data,4); //output: 5 1 6 9 

    *(data+2) = 4;
    *(dataptr+2)=2;

    print(data,4);//output: 5 1 4 2

    free(data);
return 0;
}

Ответы [ 2 ]

2 голосов
/ 05 апреля 2019

Ниже я комментирую ваш код, объясняя, куда указывают указатели.

#include <stdio.h>
#include <stdlib.h>
void print(int *info, int size)
{
    int i,*data,*dataptr;//what you want data, dataptr here? they are unused
    for (i=0; i<size; i++)
    printf("info[%d]=%d\n",i,info[i]);
    printf("\n");
    return;
}
int main()
{
    int i,*data,*dataptr;
    data = (int *)malloc(4*sizeof(int)); //From now on the data is an array of 4 element. Is equal with statement -> int data[4];

    for (i=0; i<4; i++)
    data[i]=3*i;
    print(data,4);

    *data = 5; //This line change the value of first element of array  
    dataptr = data;//point to first element of array(data[0])
    dataptr++; //increment the pointer by one, so point to the second element of array(data[1])
    *dataptr = 1;// change the value of second element of array(data[1])
    print(data,4); //output: 5 1 6 9 

    *(data+2) = 4;//change the value of third element of array. is equal data[2] = 4
    *(dataptr+2)=2;//dataptr point to second element, increament by 2, so now point to fourth element and change his value

    print(data,4);//output: 5 1 4 2

    free(data);
    return 0;
}

Я не понимаю, что на самом деле вы не можете напечатать. если вы имеете в виду dataprt, вы можете, как

printf("dataptr point to %d\n", *dataptr);

Надеюсь, это поможет вам с выполнением кода.

0 голосов
/ 05 апреля 2019
int main()
{
    int i,*data,*dataptr;
    data = (int *)malloc(4*sizeof(int));

    for (i=0; i<4; i++)
        data[i]=3*i;
    print(data,4); //output: 0 3 6 9 <-I understand this output

    *data = 5; // *data is the same as data[0] so you have 5 3 6 9  
    dataptr = data; // 
    dataptr++; // if you print dataptr you will have 3 6 9
    *dataptr = 1;// dataptr : 1 6 9
    print(data,4); //output: 5 1 6 9 ;

    *(data+2) = 4; // same as data[2] = 4 
    *(dataptr+2)=2; // same as dataptr[2] = 2

    print(data,4);//output: 5 1 4 2

    free(data);
return 0;
}

не забывайте, что dataptr - это данные ++, поэтому он будет указывать на следующее значение * data

...