1. segfault 의미 - segmentation fault - the application is trying to access a memory area that belongs to the OS or some other program. The memory management unit in the CPU stops the operation and triggers an exception. The standard segfault exception handler in the kernel kills the program. - the program probably tried to use an uninitialized pointer, which has a value NULL 2. segfault 예 - scage..