logo

Crowdly

Browser

Add to Chrome

Dans quelle zones mémoire ces différentes variables sont-elles localisées ? char...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Dans quelle zones mémoire ces différentes variables sont-elles localisées ?

char var1;

int var2 = 0;

char * func(char var3, int var4) {

    float var5;

    static int var6;

    static char var7[] = "...";

    char * var8;

    var8 = malloc(512);

    return var8;

}

int main() {

    static int var9 = 100;

    char * var10;

    var10  = func('a', var9);

}
More questions like this

Want instant access to all verified answers on lms.univ-cotedazur.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome