mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +08:00
init
This commit is contained in:
10
test/test2.c
Normal file
10
test/test2.c
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(){
|
||||
int i,j;
|
||||
i = 16;
|
||||
j = (i++)+i;
|
||||
printf("%d\n",j);
|
||||
i = 15;
|
||||
printf("%d %d\n",++i,i);
|
||||
}
|
||||
Reference in New Issue
Block a user