Name: Anonymous 2011-09-25 10:47
How exactly do register variables work in C? When should they be used? K&R touches upon them briefly but moves right along. Is there any source in which I can read about them in depth?
int a[0];
int main(int argc, char** argv) {
void this_variable_has_no_usable_type_lol;
printf("And you can do this on old compilers it seems.\n");
printf("although modern ones don't seem to like it.");
return 0;
}