2016-12-09 15:30:20 +08:00
|
|
|
#include"extractor.h"
|
|
|
|
#include<stdio.h>
|
|
|
|
|
2019-11-17 22:09:30 +08:00
|
|
|
int main(void) {
|
2016-12-09 15:30:20 +08:00
|
|
|
if((1+2+3+4) != (func1() + func2() + func3() + func4())) {
|
|
|
|
printf("Arithmetic is fail.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|