0afc055ab1
Some regressions fixed. git-svn-id: http://picoc.googlecode.com/svn/trunk@433 21eae674-98b7-11dd-bd71-f92a316d2d60
7 lines
96 B
C
7 lines
96 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
char a[10];
|
|
strcpy(a, "abcdef");
|
|
printf("%s\n", &a[1]);
|