All pastes #2054179 Raw Edit

zcram

public c v1 · immutable
#2054179 ·published 2011-05-05 11:48 UTC
rendered paste body
#include <stdio.h>int main( void ) {    char ptr[] = "aabbccdd", *p = ptr;    printf( "%s\n", p++ );    printf( "%s\n", ++p );}