3 votes
2
#include <stdio.h>int main() { int i = 258;int *iptr = &i;printf("%d",*(char*)iptr);printf("%d",*(char*)iptr+1); }Please explain the solution.