forked from aniani/vim
12 lines
165 B
C
12 lines
165 B
C
|
// C boolean constants
|
||
|
|
||
|
// Source: https://en.cppreference.com/w/c/language/bool_constant
|
||
|
|
||
|
#include <assert.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
assert(true == 1 && 0 == false);
|
||
|
}
|
||
|
|