I would like to use bool in c language
first I see in C++
int maximum(int state, **bool choose**);
then
new_state = maximum(now_State, **true**);
I use boolean in C language by this:
#define true 1
#define false 0
typedef int boolean;
boolean choose = false ;
but I dont know how to set on function like this(C++).
int maximum(int state, **bool choose**);
new_state = maximum(now_State, **true**);
Im foreigner. If you dont understand please tell me.
booltype. For C it's called_Boolbut if you#include <stdbool.h>then you can usebool.booltype in C.