diff --git a/docs/tutorials/tutorial-programming-c.html b/docs/tutorials/tutorial-programming-c.html index 7f662b2..1360e29 100644 --- a/docs/tutorials/tutorial-programming-c.html +++ b/docs/tutorials/tutorial-programming-c.html @@ -148,7 +148,7 @@ int main(void) {
  • If you saved your program's source file somewhere other than your Home directory, switch to the directory in which you saved your program using the cd command. For example, cd Documents.

  • Type 'gcc ' followed by your program's name, and then press enter. For example, 'gcc hello.c'.
  • -
  • Run your program by typing "a.out" and pressing enter.
  • +
  • Run your program by typing 'a.out' and pressing enter.

  • You should see "Hello, World!" displayed in the Terminal window. Congratulations!