I have
int chop (char* input, unsigned int length)
{
for (int chopper = 0; chopper < = length; chopper++)
{
//how to pass 1byte this input to another function
//Will this for loop help?
}
}
How do I extract one byte of from this input for my further processing?
Thank you
1 Answer