TimCraig: Sorry, it is my mistake, it is declared as:
Code:
typedef struct{int x,y,info,dx,dy,I;} CORNER_LIST[15000];
:
:
main(){
CORNER_LIST corner_list;
:
}
I have put the data into a header file which i can reuse it in try5.c However, I am still learning to save the related data into a header file by programming and not manually as i have tried. I don't know how to link multiple C files because i have just started my C programming 1 month ago. Mind showing some codes as example so that it is easier for me to understand and study?
Thanks.