mirror of
https://github.com/torje/C_crash_course.git
synced 2025-05-01 22:16:49 +02:00
7 lines
89 B
C
7 lines
89 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
fprintf(NULL, "%s\n", "Hello, SIGSEGV! ");
|
|
return 0;
|
|
}
|