what should the output of a lexer be in c?
Posted
by mekasperasky
on Stack Overflow
See other posts from Stack Overflow
or by mekasperasky
Published on 2010-04-18T12:35:34Z
Indexed on
2010/04/18
13:23 UTC
Read the original article
Hit count: 222
#include<stdio.h>
int main()
{
int a,b;
a=a+b;
printf("%d",a);
return 0;
}
what should be the output if this code is passed through a lexer
© Stack Overflow or respective owner