TheRustyStorm / BreakingThingsInC

The official Repo with course material and more for the Course

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Breaking Things In C

The official Repo with course material and more for the Course

Installation

Follow the instructions from this Repo

Install Visual Studio Code

Create a file called hello.c

#include <stdio.h>

int main(void){
  printf("Hello World\n");
  return 0;
}
gcc hello.c -o hello
./hello

About

This course is not affiliated with any university or research group, it is a voluntary and unpaid student course, which everyone who is interested is free to attend. There are no grades and no credits and it is no replacement for the official C lecture

About

The official Repo with course material and more for the Course

License:MIT License


Languages

Language:C 100.0%