Untitled

 avatar
unknown
plain_text
a year ago
266 B
17
Indexable
#include <stdio.h>

unsigned long factorial(unsigned int n)
{

}

int main()
{
    unsigned int number = 6;
    unsigned long fac = factorial(number);
    if (fac == 720)
    {
        printf("Good job!");
    }
    else
    {
        printf("Not exactly.");
    }
}
Editor is loading...
Leave a Comment