Lesson 1 of 5 20 min

Introduction to C

C is a general-purpose programming language that has influenced nearly every modern language. In this lesson you will set up your development environment, write your first program, and understand the compilation pipeline.
c
#include <stdio.h>

int main(void) {
    printf("Hello, Weekend IT!\n");
    return 0;
}
← Back to Fundamentals