Skip to content

Instantly share code, notes, and snippets.

View devleesch001's full-sized avatar

Alexis devleesch001

View GitHub Profile
@devleesch001
devleesch001 / main.cpp
Created April 28, 2023 12:58
3 < 2 < 1 is true ?
#include <iostream>
int main() {
printf("3 < 2 : %d\n", 3 < 2);
printf("2 < 1 : %d\n", 2 < 1);
printf("3 < 2 < 1 : %d\n", 3 < 2 < 1);
printf("\n");
printf("3 < 2 : ");