#include <stdio.h>int main ( ) { char test[] = "this is a test\n"; char *p; int i; for ( i = 0 ; test[i] != '\0'; i++ ) putchar(test[i]); for ( p = test ; *p != '\0'; p++ ) putchar(*p); return 0;}