// Simple example of accessing an array element

#include <stdio.h>

int array[10];

int main(void) {
    array[3] = 17;
}