mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
added doxygen documentation
This commit is contained in:
parent
0a85cd0176
commit
e8caf31e0c
@ -1,3 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
* Compute factorial of arbitrarily large numbers by
|
||||||
|
* storing individual digits in a byte.
|
||||||
|
*/
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
@ -79,6 +84,9 @@ void multiply(large_num *num, unsigned long n)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* main function
|
||||||
|
*/
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int number, i;
|
int number, i;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user