Consider :
char *n=123456;

I want to convert it into:
int b[]={1,2,3,4,5,6};
i.e.
b[0]=1;
b[1]=2;
.....
b[5]=6;

Please suggest the code to perform the same.
Thank you....

Here's a hint: subtract '0' from each digit in the string and you'll get the integer value of the represented digit. In other words, '0' - '0' is 0, '1' - '0' is 1, etc...

From there it's a simple loop over the string and assigning the result to your integer array.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.