编写fun函数,其功能是将一个数字字符串转换成与其面值相同的长整型整数。比如输入字符串“12345”,输出长整型12345<难度系数⭐> 源代码: long fun(char* s) { int i, sum = 0; for (i = 0; i < strlen(s