fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i = 256;
  5. char *c = (char *) &i;
  6. printf("%d\n",*c);
  7. }
  8.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
0