Skip to main content
X

Explore your training options in 10 minutes

C Hello World: Step-By-Step Guide

Christina Kopecky - August 05, 2022


To get started with your very first program in C, you must first be sure a C compiler is installed on your machine. Our article on C Compilers and How to Set Them Up will help you get started.

Hello World! in C

Getting your first program off the ground is simple once you have the correct tools installed. First, open your preferred code editor and start and save a new file called hello.c.

The makeup of any file in C is going to be two things:

Get offers and scholarships from top coding schools illustration

Find Your Bootcamp Match

  • Career Karma matches you with top tech bootcamps
  • Access exclusive scholarships and prep courses










By continuing you agree to our Terms of Service and Privacy Policy , and you consent to receive offers and opportunities from Career Karma by telephone, text message, and email.

  1. Your preprocessing commands – indicated by a hash symbol plus the word include, you can list headers that are needed to operate your code here.
  2. Main function – int main () {<program goes here>} is your program. As indicated by the type it expects to return an integer. If successful, it will return 0 and execute. If an error is thrown, it will return an exit status code and show the error in the compiler.

Preprocessor

Let’s start with the preprocessor section:

#include <stdio.h>

The <stdio.h> (standard input/output) header is in the standard library packaged with your compiler. This header defines variables, rules, and various functions for performing input and output. We need the <stdio.h> header file to access the functions we need to print out “Hello, World” to our terminal.

The C preprocessor will take a look at the #include statement as well as any other definitions that begin with # on the first pass through the code before compilation.

Main Function

All C files will have a main() function that expects to return an integer indicating if the function succeeded or not in executing. Here’s our code to print out “Hello, World”:

int main(void)
{
   printf("Hello, world!\n");
 
   return 0;
}

The void statement in between the parentheses simply means the function is not expecting any arguments.

The printf function comes from the <stdio.h> header where it is defined. It is the function that will display the message on the terminal.

Conclusion

How you compile your file depends on which compiler you are using. Follow the instructions for your compiler when it comes to compiling C code. Once compiled, you can then run it. That’s all there is to it! Congrats – you have just written your first C program!

About us: Career Karma is a platform designed to help job seekers find, research, and connect with job training programs to advance their careers. Learn about the CK publication.

What's Next?

Christina Kopecky

About the author: Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.

Skip to main content