Unable to find out how the C-language lexical analyzer would tokenize the declaration of a static array. Say, int i[3]= {1,2,3};
The lexical analyzer would need to differentiate between just an integer identifier i, and a static array of size 3.
Am confused how the lexical analyzer would make tokens.
Tried Holub's book, among others, but couldn't find anything.