Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
C
13
and
Guest on 1st June 2022 01:17:23 AM
/* and.c */
#include <stdio.h>
int
main
(
)
{
int
n1
=
3
;
int
n2
=
2
;
int
n3
=
3
;
if
(
(
n1
<=
n2
)
&&
(
n2
<=
n3
)
)
printf
(
"true
\n
"
)
;
else
printf
(
"false
\n
"
)
;
return
0
;
}
Raw Paste
/* and.c */ #include
int main() { int n1 = 3; int n2 = 2; int n3 = 3; if ((n1 <= n2) && (n2 <= n3)) printf("true\n"); else printf("false\n"); return 0; }
Login
or
Register
to edit or fork this paste. It's free.