#include <stdio.h>

int main() {
    int mynumber[]={23,34,45,56,67};
    mynumber[4]=33;
    printf("%d",mynumber[4]);
    return 0;
}

Embed on website

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