输出这个字符串中最长的连续数字串 例如: 输入:abc123hjuytfsa56789jkl 输出:56789 #include<stdio.h> #include<string.h> #include<stdlib.h> //输出这个字符串中最长的连续数字串 void func(char* str, int size) { char* tmp = (char*)malloc(size + 1)