[4,5,6]

#include <stdio.h>

int main() {
    int arr[] = {4, 5, 6};

    // Step 1: Declare an array 'arr' of integers with elements 4, 5, and 6.

    printf("Elements of the array: ");

    // Step 2: Print a message indicating the start of the array elements output.

    for (int i = 0; i < sizeof(arr) / sizeof(arr[0]); i++) {
        // Step 3: Iterate through each element of the array using a for loop.

        printf("%d ", arr[i]);
        // Step 4: Print the current element of the array.
    }

    // Step 5: Print a newline character to separate the array elements output.

    return 0;
}