C
26
and c
Guest on 17th September 2023 09:32:36 PM
/* 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
Login or Register to edit or fork this paste. It's free.