Working on exercise 3-5 but I'm creating some libraries

This commit is contained in:
kdeng00
2020-10-25 22:51:28 -04:00
parent 32a77a1e93
commit 72906bac35
8 changed files with 269 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
*
* Exercise 3-5. Write a function itob(n,s,b that converts the integer
* m into a base b character representation in the string s. In
* particular, itob(n,s,16) formats s as a hexadecimal integer in s.
*
*
* Author: Kun Deng
*/
#include <stdio.h>
int main()
{
return 0;
}