blob: 12636fb84786e9f7568931fd52fb6a5e0a4f8122 [file] [log] [blame]
/* strcpy() with negative pointer index */
#include <string.h>
int main()
{
char buf[10];
strcpy(&buf[-1], "String");
return 0;
}