#include int main(void) { int i, j; i = 5; j = *&i; printf( "i = %d, j = %d\n", i, j ); return 0; }