[emullen@klaatu ~]$ ls [emullen@klaatu ~]$ emacs hello.c [emullen@klaatu ~]$ gcc hello.c -o hello -Wall -g -std=c11 [emullen@klaatu ~]$ ls hello hello.c hello.c~ [emullen@klaatu ~]$ ./hello Hello World! [emullen@klaatu ~]$ echo $? 0 [emullen@klaatu ~]$ emacs hello.c [emullen@klaatu ~]$ gcc hello.c -o hello -Wall -g -std=c11 [emullen@klaatu ~]$ ./hello Hello World! [emullen@klaatu ~]$ echo $? 37 [emullen@klaatu ~]$ emacs hello.c~ [emullen@klaatu ~]$ ls hello hello.c hello.c~ [emullen@klaatu ~]$ emacs hello_args.c [emullen@klaatu ~]$ gcc hello_args.c -o hello_args -Wall -g -std=c11 [emullen@klaatu ~]$ ./hello_args blueberry Hello blueberry [emullen@klaatu ~]$ ./hello_args [emullen@klaatu ~]$ echo $? 1 [emullen@klaatu ~]$ ./hello_args blueberry strawberry Hello blueberry [emullen@klaatu ~]$ emacs hello_args.c