Intro with headers
Gwin includes basic header librarys like stdio.h
, stdlib.h
, and windows.h
(There are more)
What are headers?
Headers are librarys that are pre-compiled into your executable files.
Usage (C/C++)
#include <stdio.h>
This line of code includes the standard in, out library to be used in your program.
for a example program go here