1 post
0
2
1403
char ch[] = {'7', '3', '0', '8'}; int [] nums[2]; void transformInt(char [] c1) { int n1[2]; int j = 0; for (j = 0; j < 10; j++ ) { if (c1[j] != '0') { n1[j] = c1[j]; } else break; return n1; } }…