I want to look at the tokenized output my c-source code. The cpp processor first process the cpp-directives and then it tokenizes the c source code. Then the this tokenized output is parsed.
After that assembler does the job and process continues.
I have written my tokenizer using flex. I just want to see how gcc compiler tokenizes c source code.
Correct me if I am wrong.