11 фев 2020
conf
:
![](https://world79.spcs.bio/i/acl/all_grey.png)
![(OFF)](https://world79.spcs.bio/i/head/man_off.png?3)
![(S)](https://world79.spcs.bio/i/colored/medal_silver.png)
для тех,
у кого нет stdbool.h ![:gg](https://world79.spcs.bio/i/sm/gif/gg.gif?0)
![:gg](https://world79.spcs.bio/i/sm/gif/gg.gif?0)
#ifndef BOOLEAN_H
#define BOOLEAN_H
typedef enum {
false, true
} bool;
#endif
#include <stdio.h>
#include "boolean.h"
//...
int main () {
bool test;
test = false;
if (test) {
//...
}
test = true;
if (test) {
//...
}
return 0;
}
![]() | ![]() | ![]() | ![]() |
Для добавления комментариев необходимо авторизоваться