I have defined a char array:
char d[6];
Correct me if I\'m wrong regarding following:
At this moment no memory is allocated for variabl
int d[6];
6 bytes will be allocated onto the stack with this declaration. It will be freed automatically.