In the C programming language, it is my understanding that variables can only be defined at the beginning of a code block, and the variable will have the scope of the block it w
You probably want to create a new function for that scope. If it truly needs to have it's own scope, it's probably a separate logical function anyway.