Hi, I'm trying to make a program that prints the first 100 numbers of cont, using the recursive function listed below. Unfortunately, what I wrote doesn't work, so I was wondering, if it was even possible to do this.

Code:
#include <stdio.h>
int main()
{
    int cont[100],n;

    cont[n]=(n+1);
    for(n=1;cont<=100;n++)
    {
        printf("%s", cont);
    }
}
Thanks