Regarding array creation in heap or stack

When I create an array without using new where it will be created in heap or stack?

int arr[] = {10, 20, 30, 40, 50};