inf 3 done

This commit is contained in:
2025-11-27 11:59:47 +07:00
parent 4581ef4a2d
commit 96dc65fac0
5 changed files with 340 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
void inc(int *p){(*p)++;}
void dec(int *p){(*p)--;}
int main(){
int x=10;
inc(&x);
dec(&x);
return 0;
}