C_Interpreter/main.c

14 lines
206 B
C
Raw Normal View History

2024-12-24 19:34:24 +00:00
int main() {
int first = 256;
int second = 265;
int third = first + second;
if (third > 500) {
third = third - 256;
} else {
third = third + 256;
}
return 0;
}