All pastes #2091740 Raw Edit

Miscellany

public text v1 · immutable
#2091740 ·published 2011-10-20 11:43 UTC
rendered paste body
#include <stdio.h>

main ()
{
        int i = 1;
        char *in,*out;
        in = "5";
        i = *in;
        printf("in: %d\n",i);
}