用c语言写一个函数把十进制转换成十六进制 网上找到一些,感觉有占乱 #include “stdio.h” int main() { int num=0; int a[100]; int i=0; int m=0; int yushu; char hex[16]={“”0……