Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
C
88
boolean
Guest on 11th February 2023 01:19:08 PM
#include <stdio.h>
#include <stdbool.h>
int
main
(
)
{
bool isbool
=
true
;
int
age
=
28
;
isbool
=
(
age
>
30
)
;
printf
(
"%d"
,
isbool
)
;
return
0
;
}
Raw Paste
#include <stdio.h> #include <stdbool.h> int main() { bool isbool = true; int age = 28; isbool = (age > 30); printf("%d", isbool); return 0; }
Login
or
Register
to edit or fork this paste. It's free.