Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment: Name: Email: SEGA Comment:
>>45
My apologies. $ cat modulo.c #include <stdio.h>
int main (void) {
int i;
for (i = 0; (i % 4) == (i & 3); i++);
printf ("%d\n", i);
for (i = 0; (i % 4) == (i & 3); i--);
printf ("%d\n", i);
return 0;
}
$ cc modulo.c -o modulo
$ ./modulo
-2147483647
-1
$