unit test
This commit is contained in:
parent
98d5a1a3bc
commit
54db58d362
18 changed files with 64 additions and 9 deletions
10
test/add.c
Normal file
10
test/add.c
Normal file
|
@ -0,0 +1,10 @@
|
|||
int printf(char* format, ...);
|
||||
int scanf(char* format, ...);
|
||||
|
||||
int main() {
|
||||
int a;
|
||||
int b;
|
||||
scanf("%d", &a);
|
||||
scanf("%d", &b);
|
||||
printf("%d\n", a + b);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue