Update examples with new testcase

This commit is contained in:
jungin.rhee
2023-03-16 20:33:22 +09:00
parent 6401efb435
commit a02a928bf9
18 changed files with 107 additions and 10 deletions

6
examples/c/sizeof4.c Normal file
View File

@@ -0,0 +1,6 @@
int main()
{
int a = 3;
int b = sizeof(!(a++));
return a + b;
}