Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
978 views
in Technique[技术] by (71.8m points)

c - what is the difference between *pt in int (*pt)[2] and pt in int *pt?

For example

    int (*pt)[4];
    int target[3][4] = {{1,3,4,6},{2,4,5,8},{3,4,6,7}};
    pt = target;
    *pt = target[0];

why it is "[Error] invalid array assignment"

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

int (*pt)[4] declares pt as a pointer to an array.

C doesn't allow assigning arrays; e.g. you can't do:

int a[4] = {1, 2, 3, 4};
int b[4];
b = a;

If you want to copy an array, you need to use a loop, or you can use memcpy:

memcpy(pt, target[0], sizeof target[0]);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...