My first chapter
This is chapter one.
And some other C code:
Listing 3: C code caption
#include<stdio.h>
int main()
{
int a, b = 10;
a = -b--;
printf("a = %d, b = %d", a, b); // this is a a long comment that can overflow
return 0;
}
Other stuff goes
here
Stuff 1
Stuff 2