Chapter 3: Running KTTY AI
Save the program in a file named
hello.c
.Open your terminal or command prompt.
Compile the program using this command:
gcc hello.c -o hello
Run the compiled program:
./hello
You should see the output:
Hello World
Last updated