int main()
{
i/*nt*/a = 10;
return 0;
}
If I have the above code and I want to count the tokens, will it be 14 or 13 tokens?
Is it valid to write a comment within a variable name? You can assume that the int i
, int a
, int ia
are globally defined.