// HIDE_START // vim: ts=4 sw=4 et #include #include int main(void) { // HIDE_END int y = 0x33; char buf[10]; int x = 0x33; // copies the string to buf strcpy(buf, "abcdefghi"); buf[30] = 'a'; printf("%s %08x %08x\n", buf, x, y); // HIDE_START return 0; } // HIDE_END