All pastes #2054178 Raw Edit

zcram

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