Files
cs420/examples/c/sizeof4.c
2023-03-16 20:33:22 +09:00

7 lines
76 B
C

int main()
{
int a = 3;
int b = sizeof(!(a++));
return a + b;
}