0
0
mirror of https://github.com/torje/C_crash_course.git synced 2025-05-25 17:44:26 +02:00

added the most important feature of a C crash course, a crashing c-program

This commit is contained in:
Torje Hoås Digernes 2016-04-15 23:37:51 +02:00
parent fc04a7cb63
commit ac8c294037

6
crash.c Normal file

@ -0,0 +1,6 @@
#include <stdio.h>
int main(){
fprintf(NULL, "%s\n", "Hello, SIGSEGV! ");
return 0;
}