#include <stdio.h>
#include <stdlib.h>
int main() {
int *a0 = malloc(16 * sizeof(int));
*(a0 + 0) = 1;
*(a0 + 1) = 1;
for (int i = 2; i < 16; i++) {
*(a0 + (i-0)) = *(a0 + (i-1)) + *(a0 + (i-2));
}
for (int n = 0; n < 16; n++) {
printf("%d ",*(a0 + (n)));
}
free(a0);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: