How do you convert char [11] to int [10]First of all, you are converting 1 byte to 4 byte array. So try this.... char a1[11]; int a2[10]...
This user does not accept Private Messages