Skip to content

Miscellaneous mathematical programming tools written in C.

License

Notifications You must be signed in to change notification settings

mwmaher/Math-Stuff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Math-Stuff

Miscellaneous mathematical programming tools written in C.

/* Calculates x to the power y. Recursive function. unsigned long power(unsigned long x, unsigned long y);

/* Calculates the factorial of x. Recursive function. */ unsigned long fact(unsigned long x);

/* Calculate the Fibonacci number of n */ unsigned long fibonacci_num(unsigned long n);

/* Present binary data in ASCII format using the three-to-four algorithm */ void ascii2bin(char *bin, char *str, int size);

About

Miscellaneous mathematical programming tools written in C.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages