fork download
#include <stdio.h>

int main() {
    int foo[] = {
    	(2<<24)  + (3<<16)  + (5<<8)  + 7,
    	(11<<24) + (13<<16)	+ (17<<8) + 19,
    	(23<<24) + (29<<16)	+ (31<<8) + 37};
    int address = foo;
    int *conv = address;
    int *conv_offset = address+1;
    printf("%d\n", foo[0]);
    printf("%d\n", foo[1]);
    printf("%d\n", foo[2]);
    printf("%d\n", *(conv+0));
    printf("%d\n", *(conv+1));
    printf("%d\n", *(conv+2));
    printf("%d\n", *(conv_offset+0));
    printf("%d\n", *(conv_offset+1));
    printf("%d\n", *(conv_offset+2));
    return 0;
}
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
33752327
185405715
387784485
33752327
185405715
387784485
318898949
621481233
-1541989089