Initial commit
This commit is contained in:
10
Chapter2/Section2/bool.c
Normal file
10
Chapter2/Section2/bool.c
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
bool a = false;
|
||||
printf("a = %d\n", a);
|
||||
exit(0);
|
||||
}
|
||||
Reference in New Issue
Block a user