Actually recursion in CS is equivalent to using a stack that keeps intermediate values and that grows in relation to the input.
If you've got an algorithm that does that, then it cannot be called "iterative".
I.e. backtracking is recursive, no matter how you implement it.
In school textbooks they do differentiate between "recursive" and "iterative" backtracking, to teach you how to get rid of the call-stack and manage your own. But that's another story.
The key is the bit about the "recursive call."