Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Wie können sieben Elemente der Struktur struct abc dynamisch (am Heap) allokiert werden?
struct abc *v = calloc(sizeof(struct abc*));
struct abc *v = calloc(stzeof(struct abc), 7);
struct abc *v = malloc(sizeof(struct abc*));
struct abc *v = malloc(sizeof(struct abc) *7);
struct abc *v = (struct abc*) malloc(sizeof(struct abc) *7);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!