This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

How to use DSPLink?

Hi all!I have this code:

#include <stdio.h>
unsigned long long factorial(unsigned long long n)
{
    if (n == 0) {
        return 1;
    } else {
        return n * factorial(n - 1);
    }
}

int main(void)
{
    int n;
    for (n = 0; n <= 50000; n++) {
        printf("тестирование процессора DAVINCI%i! = %lld\n", n, factorial(n));
    }

    return 0;
}

How to run this code in DSPlink?