Project

General

Profile

RE: Get a cod file from cpparma64? » 00009.c

Rochus Keller, 08 June 2024 16:12

 
int
main()
{
int x;
x = 1;
x = x * 10; // x = 10
x = x / 2; // x = 5
x = x % 3; // x = 2
return x - 2;
}
(2-2/2)