redefinition of formal parameter 'identifier'
A formal parameter to a function is redeclared within the function body. To resolve the error, remove the redefinition. The following sample generates C2082:
void func(int i) { int i; // C2082, remove this line to resolve error } void main() { }