I need to intake a number like: 200939915
After doing this, which I know how, I need to remove the first number so it becomes: 00939915
What is the best way
char *c = "200939915"; char *d = c + 1;