Possible Duplicate:
Is there any reason to use the 'auto' keyword in C / C++?
I read that:
int i;
and
auto int i;
are equivalent. If so, what's the use of auto keyword in C? Is there any special cases when auto is more useful? Or things that cant be achieved without auto??