struct app라는 구조체가 있으면

struct app *appPtr;이라고 구조체선언할때


a = (struct app *)malloc(sizeof(struct app)*만들갯수); 하면


a[0], a[1]... 이런식으로 배열처럼 접근할수 있음?