Altera_Forum
Honored Contributor
8 years agoVariable declaration place question
the FPGA resource allocation will be different if the variable declaration in different place?
//declare the variable i, j, k not in the loop int i; int j; int k; for (...) { for (...) { //declare the variable i, j, k in loop int i; int j; int k; } } Thanks