#include <stdio.h>

int main() {
    int n[5];
    n[0] = 5;
    n[1] = 4;
    n[2] = 3;
    n[3] = 2;
    n[4] = 1;
    printf("%d",n[1]);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: