Array Declaring

When declaring an array for example:

int arr[20];

c will automatically reserve 20 * 4 memories for your array in the Stack.