i.e. it defines foo to be the type int. While the grammar allows to swap typedef and int in this case, you usually would not do this because it impairs readability.
Yes, because typedef is a decl-specifier, it can go before or after the type, just like const. Never noticed that before. – Ben VoigtSep 20 '11 at 19:39
@Lambdageek That's awesome (though I won't ever use it, because of the definething, and because it would just confuse the reader... function declaration typedefs are confusing enough...). – paercebalSep 21 '11 at 8:00