Monday, May 4, 2009

Interestingly Valid C Code

Here's a snippet of C that I did not know was valid:

int a;
int b;
a = 5;
b = 7;
a +- b;



Apparently it is the equivalent of a NO-OP.

No comments: