You're viewing a single thread.
All Comments
17 comments
$ echo 'main;' > main.c && gcc main.c 2>/dev/null && ./a.out Segmentation fault (core dumped) $
11 0 Replyecho 'main;' | gcc -w -x c - && ./a.out
9 0 Replyecho 'int main;' | gcc -w -x c - && ./a.out
4 0 Replyecho "Segmentation fault (core dumped)"
10 0 Reply
17 comments
Scroll to top