Computer Chronicle
I remember I used to watch Computer Chronicles every week when I was in high school. It looks like archive.org has amassed a huge collection of the episodes. Very cool.
Valid C Code
I learned yesterday, that the follow C code is perfectly valid.
int a,b=0; a = b=4, ++b;
The variable
a
would be assigned to 5.







