declare an array

#include <stdio.h>

int main() {
    int numbers[5];
    return 0;
}