Chapter 2

This is Chapter 2. It contains things like content.

void myfunction2(){
    printf("hello again");
}

Some more information.

The same c file:

#include <stdio.h>

void main(){
    printf("hello!");
    return 0;
}