C   26
and c
Guest on 17th September 2023 09:32:36 PM


  1. /* and.c */
  2.  
  3. #include <stdio.h>
  4.  
  5. int main() {
  6.    int n1 = 3;
  7.    int n2 = 2;
  8.    int n3 = 3;
  9.    if ((n1 <= n2) && (n2 <= n3))
  10.       printf("true\n");
  11.       else printf("false\n");
  12.    return 0;
  13. }

Raw Paste

Login or Register to edit or fork this paste. It's free.