#include #define OVERFLOW "This is longer than 10 bytes" int main (int argc, char *argv[]) { char buffer[10]; strcpy(buffer, OVERFLOW); return 0; }