C Introduction

What is C?

C is a highly popular and widely used general-purpose programming language. It is incredibly fast and efficient.

Why Learn C?

Example

#include <stdio.h>

int main() {
  printf("Hello World from C!\n");
  return 0;
}