#include int main(void) { int i = 2048; char* c; for (int j = 0; j < 4; j++) { c = &i + j; printf("'%d'\n", *c); } }