Menu
Coddy logo textTech

C Language

Part of the Fundamentals section of Coddy's C journey. Lesson 1 of 63.

C is one of the oldest and most widely used programming languages, and a great deal of the software you use every day is built on it.

challenge icon

Challenge

Beginner

Welcome to your first C program! The code is already written for you.

What to do:

  1. Look at the code: printf("Hello C!\n");
  2. Press the Run Code button to execute it
  3. You should see Hello C! appear in the output

Try it yourself

#include <stdio.h>

int main() {
    // Welcome! printf() prints text to the screen.
    // The \n at the end moves to a new line.
    // Run this code to see the result:
    printf("Hello C!\n");
    return 0;
}

All lessons in Fundamentals

Practice on your own: Online C compiler