描述:在字符串内查找数字,并保存在数组中,例如a123ds42。 则a[0] = 123,a[1] = 42. #include <ctype.h> #include <stdio.h> #define MAX 20 //数组的最大长度/*处理……