From 0971530366bc79a52cef64a520d130bd3964937f Mon Sep 17 00:00:00 2001 From: Daniel Hammer Date: Mon, 31 Aug 2026 19:02:49 +0200 Subject: [PATCH] docs - tutorial-programming-c.html consistency --- docs/tutorials/tutorial-programming-c.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!