All pastes #2091741 Raw Edit

Stuff

public c v1 · immutable
#2091741 ·published 2011-10-20 11:44 UTC
rendered paste body
#include <stdio.h>main (){        int i = 1;        char *in;        char *out;        in = "5";        i = *in;        printf("in: %d\n",i);}