#include <stdio.h>

int main() {
    int arr[3] = {10, 20, 30};
    int *p1,*p2; 

    p1 = arr;      // punt al primo elemento della'array

    for(p2 = &arr[2]; p2 >= p1; p2--) {
        printf("%d\n", *p2);
    }
}

Embed on website

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