Project

General

Profile

RE: Need help with test case 00041 » test2.c

Rochus Keller, 02 June 2024 18:34

 
/*
long long f()
{
return 12345;
}
*/
long long gll;

int main()
{
//int i;
//gll = f();
//i = gll;
gll = 12345;
return gll == 12345;
}
(2-2/2)