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 helloRun the compiled program:
./hello
You should see the output:
Hello WorldLast updated