The following code includes three standard library functions. The first two include files define integer variables, while the third include file defines a boolean variable. When the main() function is executed, it returns zero if there are no errors, and else it returns an integer error code.
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
int main(void){
return 0;
}