#include <stdio.h>

int main() {
    int t[]= 
    {
    0,1,2,3,4,5,6,7,
    2,3,4,5,6,7,8,
    4,5,6,7,8,9,
    6,7,8,9,10,
    8,9,10,11,
    10,11,12,
    12,13,
    14};
    size_t len = sizeof(t) / sizeof(t[0]);
    
    int *p = t;
    int *end = t + 36;
    for (; p < end; p++) {
        printf("%d ",*p);
    }
    return 0;
}

Embed on website

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