Can anyone please explain me, what this below code is doing:
int startat = 1; const int MAX_DIGIT = 11; char digits[MAX_DIGIT]; _itoa_s(startat,digits, MAX_DIGIT, 10);
Can anyone please explain me, what this below code is doing:
int startat = 1; const int MAX_DIGIT = 11; char digits[MAX_DIGIT]; _itoa_s(startat,digits, MAX_DIGIT, 10);