#include <iostream>
using namespace std;


int main() {
    int arr[4];

    for ( int i=0;i=3;i++) {
        cin>>arr[i];        
    }
    for (int i=0;i=3;i++) {
        cout<<arr[i]<<endl;
    }

    arr[0]=67; //updation
    cout<<endl;
    for (int i=0;i=3 ;i++ ) {
        cout<<arr[i];
        
    }
}

Embed on website

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