1.

Total mrmory space for int a[20]

Answer»

For some NEW compiler on 64 bit PC its 4 bytes.So, TOTAL 80 bytes.Explanation:#INCLUDE int MAIN() {    int a[20];    printf("%d",sizeof(a));    return 0;}



Discussion

No Comment Found