Programm

int main() {
int x = 5;
x = x++ + ++x;
printf("%d\n", x);
return 0;
}

1 year ago | [YT] | 0