Today I found strange syntax like
int _$[:>=<%-!.0,};
in some old code, but in fact the code is not commented. There seems to be no report of compile errors for this line. I tested it separately and it can compile too:
int main(){
int _$[:>=<%-!.0,};
return 0;
}
Why can it compile?