RosettaCodeData/Task/Literals-Integer/C/literals-integer.c
2023-07-01 13:44:08 -04:00

10 lines
150 B
C

#include <stdio.h>
int main(void)
{
printf("%s\n",
( (727 == 0x2d7) &&
(727 == 01327) ) ? "true" : "false");
return 0;
}