Hello World In C Quick Tutorial

Опубликовано: 18 Июль 2026
на канале: quickcoding
211
1

Learn how to start programming in C. Quick, simple tutorials so you can become a programmer in no time! To run the program on Windows, you will need a compiler. We recommend downloading CodeBlocks. Visit http://www.codeblocks.org/ to download it. If you are on a Mac or Linux machine, simply open Terminal and Text Edit. Type out the program in Text Edit and save it as hello.c Then, find this file in Terminal using the cd command. Then type gcc hello.c -o hello. This will make a hello executable. Type ./hello to run the program! The -o is what you want to call the executable so you can call it anything you want! Liked this tutorial? Don't forget to subscribe!