Ниже я комментирую ваш код, объясняя, куда указывают указатели.
#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);
Надеюсь, это поможет вам с выполнением кода.