Update sizeof examples

This commit is contained in:
Minseong Jang
2022-03-25 00:56:43 +09:00
parent bce209c613
commit 44d898f568
9 changed files with 84 additions and 25 deletions

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

@@ -0,0 +1,6 @@
int main() {
int x = 3;
int y = sizeof(++x);
return x;
}